summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-17 01:00:39 +0100
committerLudovic Courtès <ludo@gnu.org>2015-05-11 17:40:28 +0200
commita64744477d95e6932ae0fefc7cc358b56b8c397f (patch)
treef769faab9e28eb21573751724daa2b5d4a99aeab
parentb73de6e49b64d01974649a1e67a77113b768c2b1 (diff)
downloadguix-a64744477d95e6932ae0fefc7cc358b56b8c397f.tar.gz
Fix message
-rw-r--r--nix/libstore/build.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc
index 8d3b216265..17085ad3f7 100644
--- a/nix/libstore/build.cc
+++ b/nix/libstore/build.cc
@@ -2336,7 +2336,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;
         }