From 9d8d6c14c1a2ab4b912eedfba5a6212be032297d Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Fri, 20 May 2005 08:45:33 -0400 Subject: [PATCH] ENH: fix warning and also add back in build.make --- Source/cmGlobalUnixMakefileGenerator3.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index daba40d26..96c72207a 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& depends, const char* name) { - cmTarget *result = 0; + cmTarget *result; // search each local generator until a match is found unsigned int i;