summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmen Stoppels <me@harmenstoppels.nl>2024-10-02 10:09:17 +0200
committerGitHub <noreply@github.com>2024-10-02 10:09:17 +0200
commit118a9e8db7beec9fa0721688638b059727622e5b (patch)
treea357417d9d9eca034695f96bb40b8743aadfb343
parent6740ea79afa26ce9a8454668f37ca8b3b964f63b (diff)
downloadspack-118a9e8db7beec9fa0721688638b059727622e5b.tar.gz
spack-118a9e8db7beec9fa0721688638b059727622e5b.tar.bz2
spack-118a9e8db7beec9fa0721688638b059727622e5b.tar.xz
spack-118a9e8db7beec9fa0721688638b059727622e5b.zip
tests: fix wrong install name (#46711)
-rw-r--r--var/spack/repos/builtin.mock/packages/quux/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin.mock/packages/quux/package.py b/var/spack/repos/builtin.mock/packages/quux/package.py
index 61ae0283c7..c1575c907d 100644
--- a/var/spack/repos/builtin.mock/packages/quux/package.py
+++ b/var/spack/repos/builtin.mock/packages/quux/package.py
@@ -142,7 +142,7 @@ const int quux_version_minor = %s;
"-o",
"libquux.dylib",
"-install_name",
- "@rpath/libcorge.dylib",
+ "@rpath/libquux.dylib",
"quux.cc.o",
"-Wl,-rpath,%s" % prefix.lib64,
"-Wl,-rpath,%s" % spec["garply"].prefix.lib64,