summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-07 19:04:49 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-07 19:04:49 +0100
commit3893c67ad33ce74b52b1bb448cd82df331774dcc (patch)
tree3e598b68045fe2da9090ab524a56d458027c4766
parentdfe1f363170e1182f6eeb2f2589fc80a057ca634 (diff)
downloadmm-common-3893c67ad33ce74b52b1bb448cd82df331774dcc.tar.gz
meson.build: Don't use deprecated find_program().path()
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 0e6e822..b77b535 100644
--- a/meson.build
+++ b/meson.build
@@ -280,10 +280,10 @@ download_cmd = 'none'
if get_option('use-network')
curl = find_program('curl', required: false)
if curl.found()
- download_cmd = curl.path()
+ download_cmd = curl.full_path()
else
wget = find_program('wget', required: true)
- download_cmd = wget.path()
+ download_cmd = wget.full_path()
endif
endif