diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-01 20:20:48 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-01 20:20:48 +0300 |
commit | ea092fefc26f70066517edb06dec6bd251e59380 (patch) | |
tree | c80edc8bdf81a126204141626742a098774ee98b /mesonbuild | |
parent | 5bb94b901d471fe95460e8976995d017232b6a8e (diff) | |
download | meson-ea092fefc26f70066517edb06dec6bd251e59380.zip meson-ea092fefc26f70066517edb06dec6bd251e59380.tar.gz meson-ea092fefc26f70066517edb06dec6bd251e59380.tar.bz2 |
Use individual tempdirs for building and installing in unit tests.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/scripts/meson_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/meson_install.py b/mesonbuild/scripts/meson_install.py index 1937277..cc86b62 100644 --- a/mesonbuild/scripts/meson_install.py +++ b/mesonbuild/scripts/meson_install.py @@ -205,7 +205,7 @@ def install_targets(d): printed_symlink_error = True if is_elf_platform(): try: - e = depfixer.Elf(outname, True) + e = depfixer.Elf(outname, False) e.fix_rpath(install_rpath) except SystemExit as e: if isinstance(e.code, int) and e.code == 0: |