diff options
author | Jordan Galby <67924449+Jordan474@users.noreply.github.com> | 2023-12-07 11:09:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 10:09:49 +0000 |
commit | bb03ce7281e4cd058dd855bac6ea465b83fe8f2e (patch) | |
tree | 042184587f8db98aefb297d4bc268e3a644e1f3f /share | |
parent | 31640652c7b5e1a430ab7dfb894347aff96cddd7 (diff) | |
download | spack-bb03ce7281e4cd058dd855bac6ea465b83fe8f2e.tar.gz spack-bb03ce7281e4cd058dd855bac6ea465b83fe8f2e.tar.bz2 spack-bb03ce7281e4cd058dd855bac6ea465b83fe8f2e.tar.xz spack-bb03ce7281e4cd058dd855bac6ea465b83fe8f2e.zip |
Do not use depfile in bootstrap (#41458)
- we don't have a fallback if make is not installed
- we assume file system locking works
- we don't verify that make is gnu make (bootstrapping fails on FreeBSD as a result)
- there are some weird race conditions in writing spack.yaml on concurrent spack install
- the view is updated after every package install instead of post environment install.
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/templates/bootstrap/spack.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/share/spack/templates/bootstrap/spack.yaml b/share/spack/templates/bootstrap/spack.yaml index 251977d0c5..8a178d0362 100644 --- a/share/spack/templates/bootstrap/spack.yaml +++ b/share/spack/templates/bootstrap/spack.yaml @@ -17,6 +17,8 @@ spack: root: {{ store_path }} padded_length: 0 + install_status: false + packages: python: buildable: false |