diff options
Diffstat (limited to 'meson/scripts')
-rw-r--r-- | meson/scripts/meson_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson/scripts/meson_install.py b/meson/scripts/meson_install.py index a286864..1ede757 100644 --- a/meson/scripts/meson_install.py +++ b/meson/scripts/meson_install.py @@ -193,7 +193,7 @@ def install_targets(d): print("Symlink creation does not work on this platform.") printed_symlink_error = True if is_elf_platform(): - p = subprocess.Popen([d.depfixer, outname, install_rpath], + p = subprocess.Popen(d.depfixer + [outname, install_rpath], stdout=subprocess.PIPE, stderr=subprocess.PIPE) (stdo, stde) = p.communicate() |