summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Korsgaard2012-06-10 22:47:44 +0200
committerPeter Korsgaard2012-06-10 22:47:44 +0200
commit036377c954e68eb76e31f787074c6ab8c4fd9817 (patch)
tree736e0a9b3ecc2005694de819608e3720470e4145
parentlibnfc: make example build optional (diff)
downloadbuildroot-036377c954e68eb76e31f787074c6ab8c4fd9817.tar.gz
buildroot-036377c954e68eb76e31f787074c6ab8c4fd9817.tar.xz
buildroot-036377c954e68eb76e31f787074c6ab8c4fd9817.zip
synergy: fix comment dependencies
Show comment if either C++ or wchar isn't available, not only if both aren't. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/synergy/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/synergy/Config.in b/package/synergy/Config.in
index 7d8c54ece..04351b7e9 100644
--- a/package/synergy/Config.in
+++ b/package/synergy/Config.in
@@ -13,4 +13,4 @@ config BR2_PACKAGE_SYNERGY
http://synergy2.sourceforge.net/
comment "synergy requires a toolchain with C++ and WCHAR support enabled"
- depends on BR2_PACKAGE_XORG7 && !BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR
+ depends on BR2_PACKAGE_XORG7 && !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)