diff options
-rw-r--r-- | lib/spack/spack/relocate.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/spack/spack/relocate.py b/lib/spack/spack/relocate.py index 01a60db6ba..56e7c6632c 100644 --- a/lib/spack/spack/relocate.py +++ b/lib/spack/spack/relocate.py @@ -846,7 +846,11 @@ def relocate_text_bin( for old_dep_prefix, new_dep_prefix in new_prefixes.items(): if len(new_dep_prefix) <= len(old_dep_prefix): _replace_prefix_bin(binary, old_dep_prefix, new_dep_prefix) - _replace_prefix_bin(binary, orig_spack, new_spack) + _replace_prefix_bin(binary, orig_install_prefix, new_install_prefix) + + # Note: Replacement of spack directory should not be done. This causes + # an incorrect replacement path in the case where the install root is a + # subdirectory of the spack directory. def is_relocatable(spec): |