From: Jeremy Kerr Date: Thu, 14 Jul 2022 10:18:54 +0000 (+0800) Subject: doc: Use correct variable in configure_file input X-Git-Tag: v1.1-rc0~3^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fcf0afedb62cc715d7c7573ce56e95b00c64f19e;p=users%2Fsagi%2Flibnvme.git 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 --- 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)