diff options
author | Andres Freund | 2023-03-24 16:39:35 +0000 |
---|---|---|
committer | Andres Freund | 2023-03-24 16:39:35 +0000 |
commit | 5b140dc8f094e8a11fccab6bdee50d4c599e7444 (patch) | |
tree | f5ea795ca49661800cb58c69716e3afacb410824 | |
parent | a03b3b6b4a7275a66e38280f49fddb9aec8dff3d (diff) |
meson: Fix oversight in install-quiet
In e522049f239 I accidentally forgot to add meson_bin to the argument list for
install-quiet. That kind of works on some platforms because the executable is
just 'python', wich the path to meson in an argument. But on windows meson
might be installed as an executable.
Reported-by: Andrew Dunstan <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 77ee015ea9..2fe47a468c 100644 --- a/meson.build +++ b/meson.build @@ -2942,7 +2942,7 @@ install_quiet = custom_target('install-quiet', output: 'install-quiet', build_always_stale: true, build_by_default: false, - command: meson_args + ['install', '--quiet', '--no-rebuild'], + command: [meson_bin, meson_args, 'install', '--quiet', '--no-rebuild'], depends: all_built, ) |