From ca0a02c8506375e9734b0a090dc593c76de0a51f Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Mon, 9 Feb 2026 15:24:43 +0100 Subject: [PATCH] modules: reorder SUBDIRS to process . last We want to fetch the vlc_modules_list from subdirectories but they must have already processed their files so that we can include our. Fix this by reordering SUBDIRS so that "." is processed last instead of first. This way SUBDIRS (like gui/qt) generate their vlc_modules_list before the parent directory tries to concatenate them. --- modules/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/Makefile.am b/modules/Makefile.am index 6146b4f6fc..fc302d99ab 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -8,7 +8,7 @@ pkglibexec_PROGRAMS = EXTRA_DIST = CLEANFILES = -SUBDIRS = . +SUBDIRS = TESTS = dist_noinst_SCRIPTS = module.rc.in @@ -145,3 +145,4 @@ vlc_modules_list: Makefile BUILT_SOURCES += vlc_modules_list CLEANFILES += vlc_modules_list +SUBDIRS += .