about summary refs log tree commit diff
path: root/src/libstore/build.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-17T00·00+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-17T00·00+0100
commit35aad73bb6c2954f39c2e024d91fdfa41ec778bc (patch)
tree3708461fc59d66a90ae7e29125de7b92e8a56a1f /src/libstore/build.cc
parent2719627bbe4001b172e1b54ca7c300593675bf3f (diff)
Fix message
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r--src/libstore/build.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 54cce15a64..24576f6709 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -2297,7 +2297,7 @@ void DerivationGoal::registerOutputs()
         if (buildMode == bmCheck) {
             ValidPathInfo info = worker.store.queryPathInfo(path);
             if (hash.first != info.hash)
-                throw Error(format("derivation ‘%2%’ may not be deterministic: hash mismatch in output ‘%1%’") % drvPath % path);
+                throw Error(format("derivation ‘%1%’ may not be deterministic: hash mismatch in output ‘%2%’") % drvPath % path);
             continue;
         }