From b9b072f83c1f2a55b54405b2dc28e6586b59b74b Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 9 May 2024 18:52:26 +0200 Subject: [PATCH] package/ivi-homescreen: drop bogus comment dependency on NPTL As part of the review process of the ivi-homescreen package, which landed in commit 9d8497e79de3ced144877ba6ee38cc5b7181aaeb, it was deemed that the dependency on BR2_TOOLCHBAIN_HAS_THREAD_NPTL was not needed, as it was implied by glibc. According to the commit log: [yann.morin.1998@free.fr: - propagate BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS to comments - drop NPTL, implied by glibc - reorder dependencies in a more logical way - reorder comments - drop undefined BR2_PACKAGE_IVI_HOMESCREEN_HAS_CLIENT - grammar ("for to change") ] Signed-off-by: Yann E. MORIN However, while the BR2_TOOLCHBAIN_HAS_THREAD_NPTL dependency was removed from the BR2_PACKAGE_IVI_HOMESCREEN option definition, the corresponding dependency in the Config.in comment was not dropped. Let's bring things back in sync. Signed-off-by: Thomas Petazzoni --- package/ivi-homescreen/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/ivi-homescreen/Config.in b/package/ivi-homescreen/Config.in index c24df05b6d..dc2ccb0c97 100644 --- a/package/ivi-homescreen/Config.in +++ b/package/ivi-homescreen/Config.in @@ -250,10 +250,10 @@ comment "OpenGL texture plugin needs an EGL backend" endif # BR2_PACKAGE_IVI_HOMESCREEN -comment "ivi-homescreen needs a glibc toolchain w/ wchar, C++, gcc >= 5, dynamic library, host gcc >= 5, NPTL" +comment "ivi-homescreen needs a glibc toolchain w/ wchar, C++, gcc >= 5, dynamic library, host gcc >= 5" depends on BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS depends on BR2_PACKAGE_FLUTTER_ENGINE_ARCH_SUPPORTS - depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \ + depends on !BR2_TOOLCHAIN_USES_GLIBC \ || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_5 \ || BR2_STATIC_LIBS || !BR2_USE_WCHAR \ || !BR2_HOST_GCC_AT_LEAST_5