From: Vicente Olivert Riera Date: Thu, 9 Mar 2017 11:25:29 +0000 (+0000) Subject: firejail: fix logic for comment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bccf48634d58a0368667d0c58a17bbb0e6d331db;p=buildroot.git firejail: fix logic for comment 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 Signed-off-by: Thomas Petazzoni --- diff --git a/package/firejail/Config.in b/package/firejail/Config.in index 8c5338ea90..1742b65525 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