mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
meson: Fix oversight in install-quiet
In e522049f23
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 <andrew@dunslane.net>
Discussion: https://postgr.es/m/b36dd6a4-748a-4737-54d5-dc8a50fdbe4b@dunslane.net
This commit is contained in:
parent
a03b3b6b4a
commit
5b140dc8f0
@ -2942,7 +2942,7 @@ install_quiet = custom_target('install-quiet',
|
|||||||
output: 'install-quiet',
|
output: 'install-quiet',
|
||||||
build_always_stale: true,
|
build_always_stale: true,
|
||||||
build_by_default: false,
|
build_by_default: false,
|
||||||
command: meson_args + ['install', '--quiet', '--no-rebuild'],
|
command: [meson_bin, meson_args, 'install', '--quiet', '--no-rebuild'],
|
||||||
depends: all_built,
|
depends: all_built,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user