diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-04T13·15+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-04T13·15+0000 |
commit | 5adbb0aabe54479304453bf5e544f84b40ee7dd7 (patch) | |
tree | fd4fc6b57a3d9e7aa81ae5ad354e0cbce05304fd /src/libstore/local-store.hh | |
parent | 5b1052663a35940fc99ae6a8fcf6e707ae939fef (diff) |
* build.cc: only use a substituter if it returns info for a path.
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index f096bdd8557a..8266184f0edf 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -86,6 +86,9 @@ public: bool querySubstitutablePathInfo(const Path & path, SubstitutablePathInfo & info); + bool querySubstitutablePathInfo(const Path & substituter, + const Path & path, SubstitutablePathInfo & info); + Path addToStore(const Path & srcPath, bool fixed = false, bool recursive = false, string hashAlgo = "", PathFilter & filter = defaultPathFilter); |