diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/bootstrap.yaml | 2 | ||||
-rw-r--r-- | etc/spack/defaults/config.yaml | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/etc/spack/defaults/bootstrap.yaml b/etc/spack/defaults/bootstrap.yaml index 392c48b7bb..7a72bdfe6a 100644 --- a/etc/spack/defaults/bootstrap.yaml +++ b/etc/spack/defaults/bootstrap.yaml @@ -4,7 +4,7 @@ bootstrap: enable: true # Root directory for bootstrapping work. The software bootstrapped # by Spack is installed in a "store" subfolder of this root directory - root: ~/.spack/bootstrap + root: $user_config_path/bootstrap # Methods that can be used to bootstrap software. Each method may or # may not be able to bootstrap all of the software that Spack needs, # depending on its type. diff --git a/etc/spack/defaults/config.yaml b/etc/spack/defaults/config.yaml index 3487d33162..eb0d4fc409 100644 --- a/etc/spack/defaults/config.yaml +++ b/etc/spack/defaults/config.yaml @@ -42,8 +42,8 @@ config: # (i.e., ``$TMP` or ``$TMPDIR``). # # Another option that prevents conflicts and potential permission issues is - # to specify `~/.spack/stage`, which ensures each user builds in their home - # directory. + # to specify `$user_cache_path/stage`, which ensures each user builds in their + # home directory. # # A more traditional path uses the value of `$spack/var/spack/stage`, which # builds directly inside Spack's instance without staging them in a @@ -60,13 +60,13 @@ config: # identifies Spack staging to avoid accidentally wiping out non-Spack work. build_stage: - $tempdir/$user/spack-stage - - ~/.spack/stage + - $user_cache_path/stage # - $spack/var/spack/stage # Directory in which to run tests and store test results. # Tests will be stored in directories named by date/time and package # name/hash. - test_stage: ~/.spack/test + test_stage: $user_cache_path/test # Cache directory for already downloaded source tarballs and archived # repositories. This can be purged with `spack clean --downloads`. @@ -75,7 +75,7 @@ config: # Cache directory for miscellaneous files, like the package index. # This can be purged with `spack clean --misc-cache` - misc_cache: ~/.spack/cache + misc_cache: $user_cache_path/cache # Timeout in seconds used for downloading sources etc. This only applies |