[Buildroot] [git commit] firejail: fix logic for comment

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Thu Mar 9 20:36:36 UTC 2017


commit: https://git.buildroot.net/buildroot/commit/?id=bccf48634d58a0368667d0c58a17bbb0e6d331db
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.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


More information about the buildroot mailing list