Skip to content

Commit fcf0afe

Browse files
committed
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 <[email protected]> Signed-off-by: Jeremy Kerr <[email protected]>
1 parent 521d8c3 commit fcf0afe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if want_docs != 'false'
6262
if want_docs_build
6363
foreach apif : api_paths
6464
subst = configure_file(
65-
input: file,
65+
input: apif,
6666
output: '@[email protected]',
6767
configuration: conf)
6868
c = run_command(list_man_pages, subst)

0 commit comments

Comments
 (0)