From: Peter Korsgaard Date: Sun, 10 Jun 2012 20:47:44 +0000 (+0200) Subject: synergy: fix comment dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=036377c954e68eb76e31f787074c6ab8c4fd9817;p=buildroot.git 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 --- diff --git a/package/synergy/Config.in b/package/synergy/Config.in index 7d8c54eceb..04351b7e94 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)