From 13cdffe529684402dacd4c5438b5f46bba9cc170 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Sat, 11 May 2013 13:09:35 +0000 Subject: [PATCH] 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 Signed-off-by: Peter Korsgaard --- package/libnspr/Config.in | 2 +- package/libnss/Config.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libnspr/Config.in b/package/libnspr/Config.in index f4f24d46f..f87b10c2d 100644 --- a/package/libnspr/Config.in +++ b/package/libnspr/Config.in @@ -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 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