diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-03-14 15:06:06 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-03-14 15:06:06 +0100 |
commit | ebfe259f6682b43d7f0d3b57b525e25f97410052 (patch) | |
tree | e3f09eb6159168e1736f8a629286eb3d148917a9 /nix | |
parent | 47b3eed821cf86c350dc4b0fdbe75647cdc275b0 (diff) | |
parent | 8cc3983a4d02a15ad4a863671c1a5a8b2b542625 (diff) | |
download | patches-ebfe259f6682b43d7f0d3b57b525e25f97410052.tar patches-ebfe259f6682b43d7f0d3b57b525e25f97410052.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'nix')
-rw-r--r-- | nix/libstore/optimise-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/optimise-store.cc b/nix/libstore/optimise-store.cc index 71dc1be07f..d8f8d2394b 100644 --- a/nix/libstore/optimise-store.cc +++ b/nix/libstore/optimise-store.cc @@ -114,7 +114,7 @@ void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path, InodeHa /* Sometimes SNAFUs can cause files in the store to be modified, in particular when running programs as root under - GuixSD (example: $fontconfig/var/cache being modified). Skip + Guix System (example: $fontconfig/var/cache being modified). Skip those files. FIXME: check the modification time. */ if (S_ISREG(st.st_mode) && (st.st_mode & S_IWUSR)) { printMsg(lvlError, format("skipping suspicious writable file `%1%'") % path); |