build: use ExternalProgram.full_path instead of path

ExternalProgram.path has been deprecated.
This commit is contained in:
Simon Ser 2021-06-25 16:25:21 +02:00
parent 5f3773f21e
commit 151193b4cd
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ if scdoc.found()
input: filename,
output: output,
command: [
sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.path(), output)
sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.full_path(), output)
],
install: true,
install_dir: '@0@/man@1@'.format(mandir, section)