summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-05-20 12:45:33 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-05-20 12:45:33 (GMT)
commit9d8d6c14c1a2ab4b912eedfba5a6212be032297d (patch)
tree847d299c4a95cd5ab274b0d490bd83cc0d52f2ad /Source/cmGlobalUnixMakefileGenerator3.cxx
parent75598b9de0a39b5be2ba3b5c1aea7ea1985ca7a9 (diff)
downloadCMake-9d8d6c14c1a2ab4b912eedfba5a6212be032297d.zip
CMake-9d8d6c14c1a2ab4b912eedfba5a6212be032297d.tar.gz
CMake-9d8d6c14c1a2ab4b912eedfba5a6212be032297d.tar.bz2
ENH: fix warning and also add back in build.make
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index daba40d..96c7220 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -104,7 +104,7 @@ void cmGlobalUnixMakefileGenerator3::Generate()
// we no longr use the build makefile, TODO remove this code and the code
// it makes use of later on
- // this->WriteBuildMakefile();
+ this->WriteBuildMakefile();
this->WriteCleanMakefile();
}
@@ -651,7 +651,7 @@ void
cmGlobalUnixMakefileGenerator3
::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name)
{
- cmTarget *result = 0;
+ cmTarget *result;
// search each local generator until a match is found
unsigned int i;