diff options
author | t-karatsu <49965247+t-karatsu@users.noreply.github.com> | 2019-07-04 10:04:29 +0900 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-07-03 18:04:29 -0700 |
commit | adffb2bff42a5b92e24b1f1faaa6021540d61efa (patch) | |
tree | 0d97e327a3ee59bdf7c5bfa1a7fa9c162b129b9c /var | |
parent | 902dcfd1940059dd641771adca3f2fe15b87ad20 (diff) | |
download | spack-adffb2bff42a5b92e24b1f1faaa6021540d61efa.tar.gz spack-adffb2bff42a5b92e24b1f1faaa6021540d61efa.tar.bz2 spack-adffb2bff42a5b92e24b1f1faaa6021540d61efa.tar.xz spack-adffb2bff42a5b92e24b1f1faaa6021540d61efa.zip |
libtool: execute autoreconf at ver.2.4.2 (#11913)
Version 2.4.6 did not require running autoreconf, so this only does
autoreconf for 2.4.2
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libtool/package.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/libtool/package.py b/var/spack/repos/builtin/packages/libtool/package.py index ce7c1d3b3c..7823fa4bb4 100644 --- a/var/spack/repos/builtin/packages/libtool/package.py +++ b/var/spack/repos/builtin/packages/libtool/package.py @@ -18,9 +18,9 @@ class Libtool(AutotoolsPackage): version('2.4.2', 'd2f3b7d4627e69e13514a40e72a24d50') depends_on('m4@1.4.6:', type='build') - depends_on('autoconf', type='build', when='@develop') - depends_on('automake', type='build', when='@develop') - depends_on('help2man', type='build', when='@develop') + depends_on('autoconf', type='build', when='@2.4.2,develop') + depends_on('automake', type='build', when='@2.4.2,develop') + depends_on('help2man', type='build', when='@2.4.2,develop') depends_on('xz', type='build', when='@develop') depends_on('texinfo', type='build', when='@develop') @@ -30,7 +30,7 @@ class Libtool(AutotoolsPackage): build_directory = 'spack-build' - @when('@develop') + @when('@2.4.2,develop') def autoreconf(self, spec, prefix): Executable('./bootstrap')() |