libnss/libnspr: unavailable comment should be OR and not AND
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Sat, 11 May 2013 13:09:35 +0000 (13:09 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 12 May 2013 07:23:25 +0000 (09:23 +0200)
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>
package/libnspr/Config.in
package/libnss/Config.in

index f4f24d46f7f4f8040fead42e2f6550bf4b5b5b54..f87b10c2dc5c32f7180bcbda28b6e503ec3f7dab 100644 (file)
@@ -11,4 +11,4 @@ config BR2_PACKAGE_LIBNSPR
          http://www.mozilla.org/projects/nspr/
 
 comment "libnspr requires a toolchain with LARGEFILE and threads support"
-       depends on !BR2_LARGEFILE && !BR2_TOOLCHAIN_HAS_THREADS
+       depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
index a070ffbdfe4c5f2fe9152e08483f186eb7c41fb5..e8eec772b71101659211ae518ae95ef4a8216961 100644 (file)
@@ -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