diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-21 00:01:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 11:01:26 -0500 |
commit | 53fc4f92b77a8f80dccffa4f9e4a7f1abe34b08e (patch) | |
tree | 54b00cbe5d749c1f5c1d08f0a88b48638d5da4b2 | |
parent | 9241cad299fab2e582c2d57374afcac57ddae5e7 (diff) | |
download | spack-53fc4f92b77a8f80dccffa4f9e4a7f1abe34b08e.tar.gz spack-53fc4f92b77a8f80dccffa4f9e4a7f1abe34b08e.tar.bz2 spack-53fc4f92b77a8f80dccffa4f9e4a7f1abe34b08e.tar.xz spack-53fc4f92b77a8f80dccffa4f9e4a7f1abe34b08e.zip |
axel: fix build error (#19387)
-rw-r--r-- | var/spack/repos/builtin/packages/axel/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/axel/package.py b/var/spack/repos/builtin/packages/axel/package.py index 14d50f95b5..d802704e0d 100644 --- a/var/spack/repos/builtin/packages/axel/package.py +++ b/var/spack/repos/builtin/packages/axel/package.py @@ -21,3 +21,7 @@ class Axel(AutotoolsPackage): depends_on('pkgconfig', type='build') depends_on('gettext') depends_on('openssl') + + def autoreconf(self, spec, prefix): + bash = which('bash') + bash('./autogen.sh') |