diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-18 20:07:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-18 21:55:44 (GMT) |
commit | f4300cd4dd46560c95203bad4a386c5db0bda2cd (patch) | |
tree | af54508ba514ac3a88229c00bd940479d0fbf0ba /Source | |
parent | 65a42849639a3268f613795683d7c91a6ed8b661 (diff) | |
download | CMake-f4300cd4dd46560c95203bad4a386c5db0bda2cd.zip CMake-f4300cd4dd46560c95203bad4a386c5db0bda2cd.tar.gz CMake-f4300cd4dd46560c95203bad4a386c5db0bda2cd.tar.bz2 |
cmTarget: Simplify output computation.
We always have line information for contexts resulting from
command execution.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index aa556c8..e705aaa 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -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; } } } |