package/gqrx: fix comment dependency in Config.in
authorGwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Thu, 1 Jul 2021 05:01:01 +0000 (07:01 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 18 Jul 2021 21:14:38 +0000 (23:14 +0200)
comment message for gqrx is always displayed. This is due to an invert
dependency: GQRX depends on !BR2_STATIC_LIBS so comment must depends
on BR2_STATIC_LIBS.

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/gqrx/Config.in

index af4d69381e74a689b9c6a405c578b2718d4145d9..60942c36c8d0fc1212874ea86ec7dc6f899eff4c 100644 (file)
@@ -3,7 +3,7 @@ comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
        depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
        depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
        depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
-               !BR2_USE_WCHAR || !BR2_STATIC_LIBS
+               !BR2_USE_WCHAR || BR2_STATIC_LIBS
 
 comment "gqrx needs qt5"
        depends on !BR2_PACKAGE_QT5