LDMD: Made error message on compiler execution error clearer.

It is also triggered when the compiler exits with a signal, etc.
This commit is contained in:
David Nadlinger
2013-06-07 03:15:14 +02:00
parent 187899b5e6
commit b2f2afad29

View File

@@ -131,7 +131,7 @@ int execute(ls::Path exePath, const char** args)
0, 0, &errorMsg);
if (!errorMsg.empty())
{
error("Could not execute %s: %s", exePath.c_str(), errorMsg.c_str());
error("Error executing %s: %s", exePath.c_str(), errorMsg.c_str());
}
return rc;
}