summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2023-05-19 21:02:36 +0200
committerGitHub <noreply@github.com>2023-05-19 12:02:36 -0700
commit6358e84b48aa35583687d08b2ac6417528b555ba (patch)
tree972cf4a672f44eb3077e049cf8d09f713512165f /var
parent8e634d8e491ed21bdb46fc3f1e32e7feb2aab9a8 (diff)
downloadspack-6358e84b48aa35583687d08b2ac6417528b555ba.tar.gz
spack-6358e84b48aa35583687d08b2ac6417528b555ba.tar.bz2
spack-6358e84b48aa35583687d08b2ac6417528b555ba.tar.xz
spack-6358e84b48aa35583687d08b2ac6417528b555ba.zip
fix binutils dep of spack itself (#37738)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/spack/package.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/spack/package.py b/var/spack/repos/builtin/packages/spack/package.py
index a0e7fdcb07..e2a6c1d830 100644
--- a/var/spack/repos/builtin/packages/spack/package.py
+++ b/var/spack/repos/builtin/packages/spack/package.py
@@ -71,9 +71,8 @@ class Spack(Package):
depends_on("lmod@7.5.12:", type="run", when="@0.18:")
# Buildcache
- # We just need the 'strings' executable, we don't want to install
- # binutil's linkers.
- depends_on("binutils~plugins~gold~libiberty~nls~headers~lto~ld~gas~interwork", type="run")
+ # We really just need the 'strings' from binutils
+ depends_on("binutils", type="run")
depends_on("gnupg", type="run")
depends_on("patchelf", type="run", when="platform=linux")
depends_on("patchelf", type="run", when="platform=cray")