diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-11-17 01:00:39 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-11 17:40:28 +0200 |
commit | a64744477d95e6932ae0fefc7cc358b56b8c397f (patch) | |
tree | f769faab9e28eb21573751724daa2b5d4a99aeab | |
parent | b73de6e49b64d01974649a1e67a77113b768c2b1 (diff) | |
download | guix-a64744477d95e6932ae0fefc7cc358b56b8c397f.tar.gz |
Fix message
-rw-r--r-- | nix/libstore/build.cc | 2 |
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; } |