[Buildroot] [git commit branch/2021.02.x] package/gqrx: fix comment dependency in Config.in

Peter Korsgaard peter at korsgaard.com
Wed Aug 4 12:28:57 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=659514808c43393b360299070d4992bfeb3dffd3
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2021.02.x

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 at trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit d9512b08a4812c695f31c6f4925f4d78dca6ba68)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/gqrx/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


More information about the buildroot mailing list