diff options
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 691069e2b8a0..6ad4c84c69ff 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -497,7 +497,7 @@ void LocalStore::checkDerivationOutputs(const Path & drvPath, const Derivation & drvCopy.env[i->first] = ""; } - Hash h = hashDerivationModulo(drvCopy); + Hash h = hashDerivationModulo(*this, drvCopy); foreach (DerivationOutputs::const_iterator, i, drv.outputs) { Path outPath = makeOutputPath(i->first, h, drvName); |