aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-06-25 16:25:21 +0200
committerFurkan Sahin <furkan-dev@proton.me>2021-06-25 16:25:21 +0200
commit9cd6e2ba82b1839b89c12dac96c39b2ed6aa6852 (patch)
treeadd03c5e1f4e70da08b23dffb84aa9fab6161b6d
parent8b71fc7d84940435dede38b512ebd24bfa394656 (diff)
build: use ExternalProgram.full_path instead of path
ExternalProgram.path has been deprecated.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ee7c43f1..6461ff1b 100644
--- a/meson.build
+++ b/meson.build
@@ -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)