diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2022-10-02 20:44:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-02 17:44:05 -0700 |
commit | 5a0f4970df9e97afe22ce4d8f02cf5427da381ae (patch) | |
tree | d6e5d524a88a53b0a9ffc5bde3917525e0b224fa /lib | |
parent | fa7407093ec957729308f95a1403da3b222ec797 (diff) | |
download | spack-5a0f4970df9e97afe22ce4d8f02cf5427da381ae.tar.gz spack-5a0f4970df9e97afe22ce4d8f02cf5427da381ae.tar.bz2 spack-5a0f4970df9e97afe22ce4d8f02cf5427da381ae.tar.xz spack-5a0f4970df9e97afe22ce4d8f02cf5427da381ae.zip |
Fixup errors introduced by Clingo Pr: (#32905)
* re2c depends on cmake on Windows
* Winbison properly added to bootstrap package search list
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/bootstrap.py b/lib/spack/spack/bootstrap.py index cfcaac2a31..2e0f2614e7 100644 --- a/lib/spack/spack/bootstrap.py +++ b/lib/spack/spack/bootstrap.py @@ -658,7 +658,7 @@ def _add_externals_if_missing(): spack.repo.path.get_pkg_class("gawk"), ] if is_windows: - search_list.extend(spack.repo.path.get_pkg_class("winbison")) + search_list.append(spack.repo.path.get_pkg_class("winbison")) detected_packages = spack.detection.by_executable(search_list) spack.detection.update_configuration(detected_packages, scope="bootstrap") |