[Buildroot] [PATCH] firejail: fix logic for comment

Vicente Olivert Riera Vincent.Riera at imgtec.com
Thu Mar 9 11:25:29 UTC 2017


firejail depends on !uClibc, so the "firejail needs !uClibc" comment
should be displayed when we do have uClibc. Right now the logic is just
the other way around, so flip it.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera at imgtec.com>
---
 package/firejail/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/firejail/Config.in b/package/firejail/Config.in
index 8c5338e..1742b65 100644
--- a/package/firejail/Config.in
+++ b/package/firejail/Config.in
@@ -16,4 +16,4 @@ config BR2_PACKAGE_FIREJAIL
 
 comment "firejail needs a glibc or musl toolchain w/ threads"
 	depends on BR2_USE_MMU
-	depends on !BR2_TOOLCHAIN_USES_UCLIBC || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_TOOLCHAIN_USES_UCLIBC || !BR2_TOOLCHAIN_HAS_THREADS
-- 
2.10.2



More information about the buildroot mailing list