forked from lix-project/lix
* Fixed format string error.
This commit is contained in:
parent
056cd1d3b7
commit
c1a18f543e
|
@ -1038,7 +1038,7 @@ void NormalisationGoal::createClosure()
|
||||||
Path path = *i;
|
Path path = *i;
|
||||||
if (!pathExists(path)) {
|
if (!pathExists(path)) {
|
||||||
throw BuildError(
|
throw BuildError(
|
||||||
format("builder for `%1%' failed to produce output path `%1%'")
|
format("builder for `%1%' failed to produce output path `%2%'")
|
||||||
% nePath % path);
|
% nePath % path);
|
||||||
}
|
}
|
||||||
nf.closure.roots.insert(path);
|
nf.closure.roots.insert(path);
|
||||||
|
|
Loading…
Reference in a new issue