From bccf48634d58a0368667d0c58a17bbb0e6d331db Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Thu, 9 Mar 2017 11:25:29 +0000 Subject: [PATCH] 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 --- 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 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 -- 2.30.2