summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2024-04-29 01:34:12 +0200
committerGitHub <noreply@github.com>2024-04-28 18:34:12 -0500
commit7d87369ead99046f04211cd95047cabf1e2b30c1 (patch)
tree62cff0d84a118c909a0e26d42d0b15e8fafebb8a
parent7723bd28ed7420d448825e2584db407d3c9e6ac4 (diff)
downloadspack-7d87369ead99046f04211cd95047cabf1e2b30c1.tar.gz
spack-7d87369ead99046f04211cd95047cabf1e2b30c1.tar.bz2
spack-7d87369ead99046f04211cd95047cabf1e2b30c1.tar.xz
spack-7d87369ead99046f04211cd95047cabf1e2b30c1.zip
autoconf: fix typo in m4 dependencies (#43893)
m4 1.4.8 is actually required starting with autoconf 2.72 according to the NEWS file.
-rw-r--r--var/spack/repos/builtin/packages/autoconf/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/autoconf/package.py b/var/spack/repos/builtin/packages/autoconf/package.py
index b202e60460..94489a1194 100644
--- a/var/spack/repos/builtin/packages/autoconf/package.py
+++ b/var/spack/repos/builtin/packages/autoconf/package.py
@@ -52,8 +52,8 @@ class Autoconf(AutotoolsPackage, GNUMirrorPackage):
# Note: m4 is not a pure build-time dependency of autoconf. m4 is
# needed when autoconf runs, not only when autoconf is built.
- depends_on("m4@1.4.8:", type=("build", "run"), when="@1.72:")
- depends_on("m4@1.4.6:", type=("build", "run"), when="@:1.71")
+ depends_on("m4@1.4.8:", type=("build", "run"), when="@2.72:")
+ depends_on("m4@1.4.6:", type=("build", "run"), when="@:2.71")
depends_on("perl", type=("build", "run"))
build_directory = "spack-build"