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");