summaryrefslogtreecommitdiffstats
path: root/package/libnss
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-05-11 13:09:35 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-05-12 09:23:25 +0200
commit13cdffe529684402dacd4c5438b5f46bba9cc170 (patch)
treed9342521c679551be1ef6ae274e97826eb9aeb16 /package/libnss
parente5ef6f7f71c0773af1f35b8a4e78669a8c3c8bf0 (diff)
downloadbuildroot-novena-13cdffe529684402dacd4c5438b5f46bba9cc170.tar.gz
buildroot-novena-13cdffe529684402dacd4c5438b5f46bba9cc170.zip
libnss/libnspr: unavailable comment should be OR and not AND
Otherwise the comment would only show up when both conditions are true instead of any of them. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libnss')
-rw-r--r--package/libnss/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libnss/Config.in b/package/libnss/Config.in
index a070ffbdf..e8eec772b 100644
--- a/package/libnss/Config.in
+++ b/package/libnss/Config.in
@@ -15,5 +15,5 @@ config BR2_PACKAGE_LIBNSS
http://www.mozilla.org/projects/security/pki/nss/
comment "libnss requires a toolchain with LARGEFILE and thread support"
- depends on !BR2_LARGEFILE && !BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS