From cab7816b56f75dab579c75f8178e7dd20773b1a2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Apr 2005 08:07:41 +0000 Subject: [PATCH] * Slightly nicer message. --- src/libstore/build.cc | 6 +++--- 1 file 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 allReferences; map 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). */