summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/relocate.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/spack/relocate.py b/lib/spack/spack/relocate.py
index 711c7d2341..4cbe6d64c6 100644
--- a/lib/spack/spack/relocate.py
+++ b/lib/spack/spack/relocate.py
@@ -502,11 +502,11 @@ def make_link_relative(cur_path_names, orig_path_names):
Change absolute links to be relative.
"""
for cur_path, orig_path in zip(cur_path_names, orig_path_names):
- old_src = os.readlink(orig_path)
- new_src = os.path.relpath(old_src, orig_path)
+ target = os.readlink(orig_path)
+ relative_target = os.path.relpath(target, os.path.dirname(orig_path))
os.unlink(cur_path)
- os.symlink(new_src, cur_path)
+ os.symlink(relative_target, cur_path)
def make_macho_binaries_relative(cur_path_names, orig_path_names, old_dir,