diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-01T22·03-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-01T22·03-0400 |
commit | 9c2decaa1935ae4bf99a9b723d4eab188f8f88ef (patch) | |
tree | 97cf99d322e6b3495c2629b66fead0813378bd07 /src | |
parent | 5170c5691aac1bd6abc69be65cf880316e11fe24 (diff) | |
parent | 234ce610e0671410cb8a9ce4d8725e55472e8d47 (diff) |
Merge branch 'master' into no-manifests
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/optimise-store.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstore/optimise-store.cc b/src/libstore/optimise-store.cc index e08ee1784510..334f4f355f43 100644 --- a/src/libstore/optimise-store.cc +++ b/src/libstore/optimise-store.cc @@ -1,3 +1,5 @@ +#include "config.h" + #include "util.hh" #include "local-store.hh" #include "immutable.hh" @@ -51,6 +53,8 @@ struct MakeImmutable void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path) { + checkInterrupt(); + struct stat st; if (lstat(path.c_str(), &st)) throw SysError(format("getting attributes of path `%1%'") % path); @@ -65,7 +69,6 @@ void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path) /* 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; |