[Buildroot] [git commit branch/2020.02.x] package/mediastreamer: fix comment

Peter Korsgaard peter at korsgaard.com
Fri Jan 29 07:50:01 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=1e3485cad80e0373949a449afe19f4a3101becfc
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2020.02.x

Fix inversed logic, comment should be shown for static-only toolchains.

Signed-off-by: Bernd Kuhls <bernd.kuhls at t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
(cherry picked from commit 0ca6b41f8a9c19c414e25147d99482aec8dd6dcd)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/mediastreamer/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/mediastreamer/Config.in b/package/mediastreamer/Config.in
index b3ba5a0cb0..b12535e82c 100644
--- a/package/mediastreamer/Config.in
+++ b/package/mediastreamer/Config.in
@@ -18,7 +18,7 @@ config BR2_PACKAGE_MEDIASTREAMER
 
 comment "mediastreamer needs a toolchain w/ threads, C++, dynamic library"
 	depends on !BR2_INSTALL_LIBSTDCPP || \
-		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_STATIC_LIBS
+		!BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
 
 comment "mediastreamer needs a toolchain not affected by GCC bug 64735"
 	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735


More information about the buildroot mailing list