about summary refs log tree commit diff
path: root/src/libstore/build.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-04-11T08·07+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-04-11T08·07+0000
commitcab7816b56f75dab579c75f8178e7dd20773b1a2 (patch)
treec630775272eb2e34612dac17b21f4cc0456e23e9 /src/libstore/build.cc
parent82d771f6e66e3f8a7101574d9c606553b490fe71 (diff)
* Slightly nicer message.
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r--src/libstore/build.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 4c03da3e2c..435e97257e 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -1087,9 +1087,6 @@ void DerivationGoal::startBuilder()
 
 void DerivationGoal::computeClosure()
 {
-    startNest(nest, lvlTalkative,
-        format("determining closure for `%1%'") % drvPath);
-
     map<Path, PathSet> allReferences;
     map<Path, Hash> contentHashes;
     
@@ -1106,6 +1103,9 @@ void DerivationGoal::computeClosure()
                 % drvPath % path);
         }
 
+        startNest(nest, lvlTalkative,
+            format("scanning for references inside `%1%'") % path);
+
         /* Check that fixed-output derivations produced the right
            outputs (i.e., the content hash should match the specified
            hash). */