From 0002cf3ba1ee55e70381b9fa0b445c9a356573cc Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 30 Jun 2026 22:25:10 +0200 Subject: [PATCH] swscale/Makefile: Mark sws_ops* test tools as requiring CONFIG_UNSTABLE Fixes "make testprogs" with --disable-unstable Signed-off-by: Andreas Rheinhardt --- libswscale/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libswscale/Makefile b/libswscale/Makefile index 7ab3f66785..e98780a61f 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -52,5 +52,6 @@ TESTPROGS = colorspace \ floatimg_cmp \ pixdesc_query \ swscale \ - sws_ops \ - sws_ops_aarch64 \ + +TESTPROGS-$(CONFIG_UNSTABLE) = sws_ops \ + sws_ops_aarch64 \