firejail: fix logic for comment
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>
Thu, 9 Mar 2017 11:25:29 +0000 (11:25 +0000)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 9 Mar 2017 20:36:36 +0000 (21:36 +0100)
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@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/firejail/Config.in

index 8c5338ea902d4a3977739425d6d9900acb7db85a..1742b655250dea05422ae0093ec15dee39704fa5 100644 (file)
@@ -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