From: Gwenhael Goavec-Merou Date: Thu, 1 Jul 2021 05:01:01 +0000 (+0200) Subject: package/gqrx: fix comment dependency in Config.in X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9512b08a4812c695f31c6f4925f4d78dca6ba68;p=buildroot.git package/gqrx: fix comment dependency in Config.in 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 Signed-off-by: Thomas Petazzoni --- diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in index af4d69381e..60942c36c8 100644 --- a/package/gqrx/Config.in +++ b/package/gqrx/Config.in @@ -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