aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libstore/optimise-store.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libstore/optimise-store.cc b/src/libstore/optimise-store.cc
index e5bfa332d..486538bd2 100644
--- a/src/libstore/optimise-store.cc
+++ b/src/libstore/optimise-store.cc
@@ -62,8 +62,13 @@ void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path)
return;
}
- /* We can hard link regular files and symlinks. */
- if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) return;
+ /* We can hard link regular files and maybe symlinks. */
+ if (!S_ISREG(st.st_mode)
+#if CAN_LINK_SYMLINK
+ x
+ && !S_ISLNK(st.st_mode)
+#endif
+ ) return;
/* Sometimes SNAFUs can cause files in the Nix store to be
modified, in particular when running programs as root under