From 151193b4cd8326ca3bb1fd4e36100f9c59b3e8b4 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 25 Jun 2021 16:25:21 +0200 Subject: build: use ExternalProgram.full_path instead of path ExternalProgram.path has been deprecated. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') 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) -- cgit v1.2.3-54-g00ecf