[Buildroot] [PATCH] ti-sgx-um: fix missing line continuation

Gustavo Zacarias gustavo at zacarias.com.ar
Sat Jul 16 17:31:14 UTC 2016


It's missing for the threads conditional, which otherwise results in:
package/ti-sgx-um/Config.in:6: syntax error
package/ti-sgx-um/Config.in:5: invalid option
package/ti-sgx-um/Config.in:6: unknown option
"BR2_TOOLCHAIN_HAS_THREADS"

Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar>
---
 package/ti-sgx-um/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/ti-sgx-um/Config.in b/package/ti-sgx-um/Config.in
index 2be6c06..c73df37 100644
--- a/package/ti-sgx-um/Config.in
+++ b/package/ti-sgx-um/Config.in
@@ -2,7 +2,7 @@ comment "ti-sgx-um needs the ti-sgx-km driver"
 	depends on !BR2_PACKAGE_TI_SGX_KM
 
 comment "ti-sgx-um needs a glibc toolchain w/ threads"
-	depends on !BR2_TOOLCHAIN_USES_GLIBC ||
+	depends on !BR2_TOOLCHAIN_USES_GLIBC || \
 		!BR2_TOOLCHAIN_HAS_THREADS
 
 config BR2_PACKAGE_TI_SGX_UM
-- 
2.7.3



More information about the buildroot mailing list