summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-14 21:47:40 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-19 20:36:48 (GMT)
commit6b9e647239b67aff3119efbe2691fefe9c2dc28b (patch)
tree7c4ddbaa7ccb8311a1a4b44aa1230e8a790eb8cd /Source/cmLocalNinjaGenerator.cxx
parent594dd9b36a7f3ac37b56c89596ff38451570de3e (diff)
downloadCMake-6b9e647239b67aff3119efbe2691fefe9c2dc28b.zip
CMake-6b9e647239b67aff3119efbe2691fefe9c2dc28b.tar.gz
CMake-6b9e647239b67aff3119efbe2691fefe9c2dc28b.tar.bz2
cmMakefile: Port CurrentListFile clients to GetDefinition.
There is no need to store this as a member variable.
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r--Source/cmLocalNinjaGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx
index f1f1202..bcae486 100644
--- a/Source/cmLocalNinjaGenerator.cxx
+++ b/Source/cmLocalNinjaGenerator.cxx
@@ -305,8 +305,8 @@ void cmLocalNinjaGenerator::WriteProcessedMakefile(std::ostream& os)
cmGlobalNinjaGenerator::WriteDivider(os);
os
<< "# Write statements declared in CMakeLists.txt:" << std::endl
- << "# " << this->Makefile->GetCurrentListFile() << std::endl
- ;
+ << "# "
+ << this->Makefile->GetDefinition("CMAKE_CURRENT_LIST_FILE") << std::endl;
if(this->IsRootMakefile())
os << "# Which is the root file." << std::endl;
cmGlobalNinjaGenerator::WriteDivider(os);