diff options
author | plamborn <plamborn@lanl.gov> | 2020-01-24 19:20:02 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-01-24 18:20:02 -0800 |
commit | f8e0f4251d6aad243d9bdad792eb90c6170dc0c9 (patch) | |
tree | 3bb77e28d98d2317c396a56c44764bc16b4f3f2b | |
parent | 9a6b3b3a07eb840a49dafb48234a0bd447021ef3 (diff) | |
download | spack-f8e0f4251d6aad243d9bdad792eb90c6170dc0c9.tar.gz spack-f8e0f4251d6aad243d9bdad792eb90c6170dc0c9.tar.bz2 spack-f8e0f4251d6aad243d9bdad792eb90c6170dc0c9.tar.xz spack-f8e0f4251d6aad243d9bdad792eb90c6170dc0c9.zip |
libhio: remove autoreconf method (#14283)
The autoreconf is not necessary and can cause errors.
-rw-r--r-- | var/spack/repos/builtin/packages/libhio/package.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/libhio/package.py b/var/spack/repos/builtin/packages/libhio/package.py index 352a2d5a2a..42ef377a5a 100644 --- a/var/spack/repos/builtin/packages/libhio/package.py +++ b/var/spack/repos/builtin/packages/libhio/package.py @@ -49,10 +49,6 @@ class Libhio(AutotoolsPackage): patch('0001-hdf5-make-docs-optional.patch', when="@1.4.1.0") patch('0001-spack-fix-for-spack-to-work-on-non-cray-systems.patch', when="@1.4.1.2") - def autoreconf(self, spec, prefix): - autoreconf = which('autoreconf') - autoreconf('-ifv') - def configure_args(self): spec = self.spec args = [] |