From 80870d9291813f265a6e078c92aa535ef0b70a47 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Feb 2005 16:03:47 +0000 Subject: [PATCH] * Input sources should be in the set of all referenceable paths too. --- src/libstore/build.cc | 8 ++++---- src/libstore/references.cc | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libstore/build.cc b/src/libstore/build.cc index e71201785e..1aa3e37bab 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -903,15 +903,15 @@ bool DerivationGoal::prepareBuild() % drvPath % *j % i->first); } - debug(format("added input paths %1%") % showPaths(inputPaths)); - - allPaths.insert(inputPaths.begin(), inputPaths.end()); - /* Second, the input sources. */ for (PathSet::iterator i = drv.inputSrcs.begin(); i != drv.inputSrcs.end(); ++i) computeFSClosure(*i, inputPaths); + debug(format("added input paths %1%") % showPaths(inputPaths)); + + allPaths.insert(inputPaths.begin(), inputPaths.end()); + return true; } diff --git a/src/libstore/references.cc b/src/libstore/references.cc index 5ceae64276..843aed97fc 100644 --- a/src/libstore/references.cc +++ b/src/libstore/references.cc @@ -34,6 +34,8 @@ void checkPath(const string & path, { checkInterrupt(); + debug(format("checking `%1%'") % path); + struct stat st; if (lstat(path.c_str(), &st)) throw SysError(format("getting attributes of path `%1%'") % path); @@ -48,8 +50,6 @@ void checkPath(const string & path, else if (S_ISREG(st.st_mode)) { - debug(format("checking `%1%'") % path); - AutoCloseFD fd = open(path.c_str(), O_RDONLY); if (fd == -1) throw SysError(format("opening file `%1%'") % path);