autoconf: fix typo in m4 dependencies (#43893)

m4 1.4.8 is actually required starting with autoconf 2.72 according to
the NEWS file.
This commit is contained in:
Michael Kuhn 2024-04-29 01:34:12 +02:00 committed by GitHub
parent 7723bd28ed
commit 7d87369ead
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"