From 096194ab29db244fe791404e02b729a3e38eee8d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 7 Dec 2006 23:58:36 +0000 Subject: [PATCH] * Remove ancient terminology. --- 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 9f3420c684..9aeed6efa9 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -594,7 +594,7 @@ public: private: /* The states. */ void init(); - void haveStoreExpr(); + void haveDerivation(); void outputsSubstituted(); void inputsRealised(); void tryToBuild(); @@ -692,11 +692,11 @@ void DerivationGoal::init() substitute. */ addWaitee(worker.makeSubstitutionGoal(drvPath)); - state = &DerivationGoal::haveStoreExpr; + state = &DerivationGoal::haveDerivation; } -void DerivationGoal::haveStoreExpr() +void DerivationGoal::haveDerivation() { trace("loading derivation");