diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-08-29 17:16:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 17:16:36 +0200 |
commit | dc3f5cd606184f1c94d826a188eadd076607862d (patch) | |
tree | d30276fd841f44896e0508e3279630a2a561287c | |
parent | 9a169279934c316711c18af52a4c25e864dc5266 (diff) | |
download | spack-dc3f5cd606184f1c94d826a188eadd076607862d.tar.gz spack-dc3f5cd606184f1c94d826a188eadd076607862d.tar.bz2 spack-dc3f5cd606184f1c94d826a188eadd076607862d.tar.xz spack-dc3f5cd606184f1c94d826a188eadd076607862d.zip |
windows_establish_runtime_linkage: post install hook (#46103)
-rw-r--r-- | lib/spack/spack/binary_distribution.py | 1 | ||||
-rw-r--r-- | lib/spack/spack/installer.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/binary_distribution.py b/lib/spack/spack/binary_distribution.py index 2862f5e7cb..25c137f04a 100644 --- a/lib/spack/spack/binary_distribution.py +++ b/lib/spack/spack/binary_distribution.py @@ -2561,7 +2561,6 @@ def install_root_node(spec, unsigned=False, force=False, sha256=None): with spack.util.path.filter_padding(): tty.msg('Installing "{0}" from a buildcache'.format(spec.format())) extract_tarball(spec, download_result, force) - spec.package.windows_establish_runtime_linkage() spack.hooks.post_install(spec, False) spack.store.STORE.db.add(spec, spack.store.STORE.layout) diff --git a/lib/spack/spack/installer.py b/lib/spack/spack/installer.py index 9039a3738f..33904407ec 100644 --- a/lib/spack/spack/installer.py +++ b/lib/spack/spack/installer.py @@ -488,7 +488,6 @@ def _process_binary_cache_tarball( with timer.measure("install"), spack.util.path.filter_padding(): binary_distribution.extract_tarball(pkg.spec, download_result, force=False, timer=timer) - pkg.windows_establish_runtime_linkage() if hasattr(pkg, "_post_buildcache_install_hook"): pkg._post_buildcache_install_hook() |