zmqpp: use more logical way of expressing comment dependencies
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 5 Aug 2015 09:07:39 +0000 (11:07 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 5 Aug 2015 10:11:20 +0000 (12:11 +0200)
In most packages, we use 'depends on !A || !B || !C' and not 'depends
on !(A && B && C)' to express the dependencies of comments on missing
toolchain features. As suggested by Yann E. Morin, let's switch zmqpp
to this convention.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/zmqpp/Config.in

index 756c8101a31f9124fab40cc266962e39563001d6..a10602f283cbf80c46dc78c866c583f595fe9f12 100644 (file)
@@ -15,8 +15,8 @@ config BR2_PACKAGE_ZMQPP
          http://github.com/benjamg/zmqpp
 
 comment "zmqpp needs a toolchain w/ C++, wchar, threads, gcc >= 4.6"
-       depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
-               BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_6)
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
+               !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
 
 if BR2_PACKAGE_ZMQPP