autoconf: Correct m4 dependency declaration (#3415)

* autoconf: Correct m4 dependency declaration

Closes #3406.

* autoconf: Correct m4 dependency type

* autoconf: Update comment
This commit is contained in:
Erik Schnetter 2017-03-11 22:04:18 -05:00 committed by Adam J. Stewart
parent 02db630985
commit 9a14597493

View File

@ -36,7 +36,9 @@ class Autoconf(AutotoolsPackage):
version('2.59', 'd4d45eaa1769d45e59dcb131a4af17a0')
version('2.13', '9de56d4a161a723228220b0f425dc711')
depends_on('m4@1.4.6:', type='build')
# 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.6:', type=('build', 'run'))
build_directory = 'spack-build'