summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>2022-12-17 01:11:11 +0100
committerGitHub <noreply@github.com>2022-12-16 16:11:11 -0800
commit9817593c1cb363dc5924099de4fe23ea0a704ee9 (patch)
tree3a9108e4017fea8725c8a27da4fc5449d3fde28a /var
parent1cc78dac38862b88d34df0250e8d927e13b96223 (diff)
downloadspack-9817593c1cb363dc5924099de4fe23ea0a704ee9.tar.gz
spack-9817593c1cb363dc5924099de4fe23ea0a704ee9.tar.bz2
spack-9817593c1cb363dc5924099de4fe23ea0a704ee9.tar.xz
spack-9817593c1cb363dc5924099de4fe23ea0a704ee9.zip
Automake requires Thread::Queue, but it is only provided with in perl+threads. (#34076)
Update the depends_on("perl") to depends_on("perl+threads"). This and #34074 is needed to properly handle e.g. the perl-Thread-Queue rpm package: It may not be installed on RedHat-based hosts, which can lead to automake build failures when `spack external find perl` or `spack external find --all` was used to use the system-provided perl install.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/automake/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/automake/package.py b/var/spack/repos/builtin/packages/automake/package.py
index 68fe69bc16..40982ecc28 100644
--- a/var/spack/repos/builtin/packages/automake/package.py
+++ b/var/spack/repos/builtin/packages/automake/package.py
@@ -24,7 +24,7 @@ class Automake(AutotoolsPackage, GNUMirrorPackage):
version("1.11.6", sha256="53dbf1945401c43f4ce19c1971baecdbf8bc32e0f37fa3f49fe7b6992d0d2030")
depends_on("autoconf", type="build")
- depends_on("perl", type=("build", "run"))
+ depends_on("perl+threads", type=("build", "run"))
build_directory = "spack-build"