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:
parent
7723bd28ed
commit
7d87369ead
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue