aboutsummaryrefslogtreecommitdiff
path: root/meson_install.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-04 23:15:56 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-04 23:15:56 +0300
commitbb36eec84639c84ac60ff1efd4208bb7638be56d (patch)
tree445adf46413ca9dc32e8020a519c30007ad2e0f6 /meson_install.py
parent3673791b4f7d8fbc290629b1173fff91d7aee781 (diff)
downloadmeson-bb36eec84639c84ac60ff1efd4208bb7638be56d.zip
meson-bb36eec84639c84ac60ff1efd4208bb7638be56d.tar.gz
meson-bb36eec84639c84ac60ff1efd4208bb7638be56d.tar.bz2
Strip dev rpath on install.
Diffstat (limited to 'meson_install.py')
-rwxr-xr-xmeson_install.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson_install.py b/meson_install.py
index 54d56a3..e42fd77 100755
--- a/meson_install.py
+++ b/meson_install.py
@@ -127,8 +127,9 @@ def install_targets(d):
if not printed_symlink_error:
print("Symlink creation does not work on this platform.")
printed_symlink_error = True
+ install_rpath = ''
if is_elf_platform():
- p = subprocess.Popen([d.depfixer, outname, d.dep_prefix], stdout=subprocess.PIPE,
+ p = subprocess.Popen([d.depfixer, outname, install_rpath], stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
(stdo, stde) = p.communicate()
if p.returncode != 0: