From 1a8143f721232cf90bde1f1cfe1324cc384b3a5a Mon Sep 17 00:00:00 2001 From: Michael Tretter Date: Mon, 3 Feb 2025 11:12:59 +0100 Subject: [PATCH] videotestsrc: fix build if adder is disabled The videotestsrc is not build if the adder plugin is disabled. This is a copy/paste error introduced in Commit 3de86b2b9725 ("docs: port plugins to explicit sources"). Fix the check to actually test the 'videotestsrc' option. Part-of: --- subprojects/gst-plugins-base/gst/videotestsrc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-base/gst/videotestsrc/meson.build b/subprojects/gst-plugins-base/gst/videotestsrc/meson.build index 5b0e8758b0..e5cf8904f2 100644 --- a/subprojects/gst-plugins-base/gst/videotestsrc/meson.build +++ b/subprojects/gst-plugins-base/gst/videotestsrc/meson.build @@ -17,7 +17,7 @@ plugin_sources += { 'videotestsrc': pathsep.join(doc_sources) } -if get_option('adder').disabled() +if get_option('videotestsrc').disabled() subdir_done() endif