diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-04 23:15:56 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-04 23:15:56 +0300 |
commit | bb36eec84639c84ac60ff1efd4208bb7638be56d (patch) | |
tree | 445adf46413ca9dc32e8020a519c30007ad2e0f6 /meson_install.py | |
parent | 3673791b4f7d8fbc290629b1173fff91d7aee781 (diff) | |
download | meson-bb36eec84639c84ac60ff1efd4208bb7638be56d.zip meson-bb36eec84639c84ac60ff1efd4208bb7638be56d.tar.gz meson-bb36eec84639c84ac60ff1efd4208bb7638be56d.tar.bz2 |
Strip dev rpath on install.
Diffstat (limited to 'meson_install.py')
-rwxr-xr-x | meson_install.py | 3 |
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: |