From 7d87369ead99046f04211cd95047cabf1e2b30c1 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Mon, 29 Apr 2024 01:34:12 +0200 Subject: autoconf: fix typo in m4 dependencies (#43893) m4 1.4.8 is actually required starting with autoconf 2.72 according to the NEWS file. --- var/spack/repos/builtin/packages/autoconf/package.py | 4 ++-- 1 file 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" -- cgit v1.2.3-70-g09d2