From 3b84ec3ee24d0000be339b66b1f1f93735d8757f Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 3 Jan 2026 23:43:15 +0100 Subject: [PATCH] package/opencv4-contrib: fix Config.in comments The comments saying that dnn_objdetect and dnn_superres need a glibc or musl toolchain should be shown when a uClibc toolchain is selected, not when a toolchain NOT using uClibc is selected (as this is exactly what's needed). Fixes: a2e01b23fc441a4be4416e68d91e331e00db3bbd ("package/opencv-contrib: propagate opencv4 dependencies") Signed-off-by: Thomas Petazzoni Signed-off-by: Julien Olivain --- package/opencv4-contrib/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/opencv4-contrib/Config.in b/package/opencv4-contrib/Config.in index d992c6d1ac..ad61c3fbe8 100644 --- a/package/opencv4-contrib/Config.in +++ b/package/opencv4-contrib/Config.in @@ -84,7 +84,7 @@ config BR2_PACKAGE_OPENCV4_CONTRIB_LIB_DNN_OBJDETECT comment "dnn_objdetect needs a glibc or musl toolchain" depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS - depends on !BR2_TOOLCHAIN_USES_UCLIBC + depends on BR2_TOOLCHAIN_USES_UCLIBC config BR2_PACKAGE_OPENCV4_CONTRIB_LIB_DNN_SUPERRES bool "dnn_superres" @@ -97,7 +97,7 @@ config BR2_PACKAGE_OPENCV4_CONTRIB_LIB_DNN_SUPERRES comment "dnn_superres needs a glibc or musl toolchain" depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS - depends on !BR2_TOOLCHAIN_USES_UCLIBC + depends on BR2_TOOLCHAIN_USES_UCLIBC config BR2_PACKAGE_OPENCV4_CONTRIB_LIB_DNNS_EASILY_FOOLED bool "dnns_easily_fooled"