From fcf0afedb62cc715d7c7573ce56e95b00c64f19e Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Thu, 14 Jul 2022 18:18:54 +0800 Subject: [PATCH] doc: Use correct variable in configure_file input In e33cc17 we removed an inner loop on the result of files(), but didn't update the local variable to suit. This change uses the correct iterator variable for the configure_file() invocation. Reported-by: Daniel Wagner Signed-off-by: Jeremy Kerr --- doc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/meson.build b/doc/meson.build index e7ffddb6..cd31f462 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -62,7 +62,7 @@ if want_docs != 'false' if want_docs_build foreach apif : api_paths subst = configure_file( - input: file, + input: apif, output: '@BASENAME@.subst', configuration: conf) c = run_command(list_man_pages, subst) -- 2.50.1