summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-13 17:18:28 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-21 18:57:25 (GMT)
commita863c59f70a7556c010990a362e4d13792670148 (patch)
tree9b584b46f6d2507a1f12f7ff1d14b8556e7fd586 /Source
parent076760a63c665dd2269c74d415e323f55969f544 (diff)
downloadCMake-a863c59f70a7556c010990a362e4d13792670148.zip
CMake-a863c59f70a7556c010990a362e4d13792670148.tar.gz
CMake-a863c59f70a7556c010990a362e4d13792670148.tar.bz2
cmMakefile: Use GetExecutionFileStack method.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 72aa74c..a1b1a94 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -308,7 +308,7 @@ cmListFileContext cmMakefile::GetExecutionContext() const
void cmMakefile::PrintCommandTrace(const cmListFileFunction& lff) const
{
std::ostringstream msg;
- msg << lff.FilePath << "(" << lff.Line << "): ";
+ msg << this->GetExecutionFilePath() << "(" << lff.Line << "): ";
msg << lff.Name << "(";
for(std::vector<cmListFileArgument>::const_iterator i =
lff.Arguments.begin(); i != lff.Arguments.end(); ++i)