diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 09:20:28 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-28 16:44:38 (GMT) |
commit | 83b8a927e5a992480e96b0be36ea0426a924c41f (patch) | |
tree | fe0a57626ae02b489dc31dbc9df04df7720c30a8 /Source/cmLocalGenerator.cxx | |
parent | 9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9 (diff) | |
download | CMake-83b8a927e5a992480e96b0be36ea0426a924c41f.zip CMake-83b8a927e5a992480e96b0be36ea0426a924c41f.tar.gz CMake-83b8a927e5a992480e96b0be36ea0426a924c41f.tar.bz2 |
cmMakefile: Remove cmLocalGenerator member.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index aea14d5..357a508 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -49,7 +49,7 @@ cmLocalGenerator::cmLocalGenerator(cmGlobalGenerator* gg, assert(snapshot.IsValid()); this->GlobalGenerator = gg; - this->Makefile = new cmMakefile(this); + this->Makefile = new cmMakefile(gg, snapshot); this->EmitUniversalBinaryFlags = true; this->BackwardsCompatibility = 0; |