cmTarget: Simplify output computation.

We always have line information for contexts resulting from
command execution.
This commit is contained in:
Stephen Kelly 2015-05-18 22:07:52 +02:00
parent 65a4284963
commit f4300cd4dd
1 changed files with 1 additions and 1 deletions

View File

@ -1273,7 +1273,7 @@ void cmTarget::GetTllSignatureTraces(std::ostringstream &s,
{
cmListFileContext lfc = *it;
lfc.FilePath = lg->Convert(lfc.FilePath, cmLocalGenerator::HOME);
s << " * " << (lfc.Line ? "" : " in ") << lfc << std::endl;
s << " * " << lfc << std::endl;
}
}
}