summaryrefslogtreecommitdiff
path: root/package/trinity
diff options
context:
space:
mode:
authorErico Nunes <nunes.erico@gmail.com>2016-10-30 13:51:45 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-10-30 16:42:16 +0100
commit5f1e0e688bba9b94287302258afdfacd6e6344e2 (patch)
tree271e93f29576d1a30134f364ae9d1a6db67fb290 /package/trinity
parentc0a93f5975f71cade8fb854c7f3ff550a4d5268e (diff)
trinity: fix Config.in depends on logic
The comment from trinity Config.in currently does not show up in menuconfig for glibc or uClibc toolchains with older headers. This commit fixes the logic so that it shows up when either one of the dependencies from trinity are not met. Signed-off-by: Erico Nunes <nunes.erico@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/trinity')
-rw-r--r--package/trinity/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/trinity/Config.in b/package/trinity/Config.in
index 35b54d830..0ce1f9aa2 100644
--- a/package/trinity/Config.in
+++ b/package/trinity/Config.in
@@ -18,5 +18,5 @@ config BR2_PACKAGE_TRINITY
comment "trinity needs a uClibc or glibc toolchain w/ headers >= 3.4"
depends on BR2_PACKAGE_TRINITY_ARCH_SUPPORTS
- depends on BR2_TOOLCHAIN_USES_MUSL
- depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+ depends on BR2_TOOLCHAIN_USES_MUSL || \
+ !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4