diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2024-03-07 17:53:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 16:53:14 +0000 |
commit | 0bb20d34db40d0699cc660c8beca3df2194f4f42 (patch) | |
tree | 210f011290142d37a88a32fd8a0adbbd0b821698 | |
parent | 971fda5c33e39d56f5c3c981a6634a39c36bc470 (diff) | |
download | spack-0bb20d34db40d0699cc660c8beca3df2194f4f42.tar.gz spack-0bb20d34db40d0699cc660c8beca3df2194f4f42.tar.bz2 spack-0bb20d34db40d0699cc660c8beca3df2194f4f42.tar.xz spack-0bb20d34db40d0699cc660c8beca3df2194f4f42.zip |
autotools: fix a typo in comment (#43080)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
-rw-r--r-- | lib/spack/spack/build_systems/autotools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/autotools.py b/lib/spack/spack/build_systems/autotools.py index d3b7893bfe..1f44ebf137 100644 --- a/lib/spack/spack/build_systems/autotools.py +++ b/lib/spack/spack/build_systems/autotools.py @@ -541,7 +541,7 @@ To resolve this problem, please try the following: if os.path.exists(self.configure_abs_path): return - # Else try to regenerate it, which reuquires a few build dependencies + # Else try to regenerate it, which requires a few build dependencies ensure_build_dependencies_or_raise( spec=spec, dependencies=["autoconf", "automake", "libtool"], |