diff options
author | Jonathon Anderson <17242663+blue42u@users.noreply.github.com> | 2023-11-15 02:11:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 09:11:49 +0100 |
commit | de850e97e882de6bfffa53ce5ccd45d69cc788ce (patch) | |
tree | 552e1b5f13ebb1aa61f1fb03d7314c051193f906 | |
parent | c7157d13a8c8e536fac0e97cfde55033309db635 (diff) | |
download | spack-de850e97e882de6bfffa53ce5ccd45d69cc788ce.tar.gz spack-de850e97e882de6bfffa53ce5ccd45d69cc788ce.tar.bz2 spack-de850e97e882de6bfffa53ce5ccd45d69cc788ce.tar.xz spack-de850e97e882de6bfffa53ce5ccd45d69cc788ce.zip |
libevent: call autoreconf directly instead of via autogen.sh (#41057)
-rw-r--r-- | var/spack/repos/builtin/packages/libevent/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libevent/package.py b/var/spack/repos/builtin/packages/libevent/package.py index 7969fb63d5..dc0c34191c 100644 --- a/var/spack/repos/builtin/packages/libevent/package.py +++ b/var/spack/repos/builtin/packages/libevent/package.py @@ -59,7 +59,7 @@ class Libevent(AutotoolsPackage): return LibraryList(libs) def autoreconf(self, spec, prefix): - Executable("./autogen.sh")() + autoreconf("--force", "--install", "--symlink") def configure_args(self): spec = self.spec |