diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2017-03-09 11:25:29 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-09 21:36:36 +0100 |
commit | bccf48634d58a0368667d0c58a17bbb0e6d331db (patch) | |
tree | 75b8457b4d4a0629820e7d8a986b25eaff4fb1fc | |
parent | ac53042bf230eebab4eea552a2bafa27619676a6 (diff) | |
download | buildroot-bccf48634d58a0368667d0c58a17bbb0e6d331db.tar.gz buildroot-bccf48634d58a0368667d0c58a17bbb0e6d331db.zip |
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 <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/firejail/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |