diff options
author | Phil Tooley <32297355+ptooley@users.noreply.github.com> | 2021-02-23 23:20:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 15:20:49 -0800 |
commit | 6622856076920cf7b0baa7e5e33e7bc00a85fc32 (patch) | |
tree | b60a71750b8b04eed031a265937d6069d55cb26f | |
parent | 8ef67e2b159e86332de2498561122f8b3ec3dd87 (diff) | |
download | spack-6622856076920cf7b0baa7e5e33e7bc00a85fc32.tar.gz spack-6622856076920cf7b0baa7e5e33e7bc00a85fc32.tar.bz2 spack-6622856076920cf7b0baa7e5e33e7bc00a85fc32.tar.xz spack-6622856076920cf7b0baa7e5e33e7bc00a85fc32.zip |
use package supplied autogen.sh (#20319)
-rw-r--r-- | var/spack/repos/builtin/packages/numactl/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/numactl/package.py b/var/spack/repos/builtin/packages/numactl/package.py index 1eb23cf1f7..db2b9eaaaa 100644 --- a/var/spack/repos/builtin/packages/numactl/package.py +++ b/var/spack/repos/builtin/packages/numactl/package.py @@ -12,6 +12,8 @@ class Numactl(AutotoolsPackage): homepage = "http://oss.sgi.com/projects/libnuma/" url = "https://github.com/numactl/numactl/archive/v2.0.11.tar.gz" + force_autoreconf = True + version('2.0.14', sha256='1ee27abd07ff6ba140aaf9bc6379b37825e54496e01d6f7343330cf1a4487035') version('2.0.12', sha256='7c3e819c2bdeb883de68bafe88776a01356f7ef565e75ba866c4b49a087c6bdf') version('2.0.11', sha256='3e099a59b2c527bcdbddd34e1952ca87462d2cef4c93da9b0bc03f02903f7089') @@ -25,6 +27,10 @@ class Numactl(AutotoolsPackage): depends_on('libtool', type='build') depends_on('m4', type='build') + def autoreconf(self, spec, prefix): + bash = which('bash') + bash('./autogen.sh') + def patch(self): # Remove flags not recognized by the NVIDIA compiler if self.spec.satisfies('%nvhpc'): |