summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-08-05 21:07:07 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-08-05 21:07:07 (GMT)
commitdce07caf0b59c120c0cc64199bf355842751fd19 (patch)
tree3d08a402b273234a283d34b9f1eec02b78015f7d /Source/cmGlobalUnixMakefileGenerator3.cxx
parentc8a44b42ad91fd3c45f378b9ac88e62b5c9ffc38 (diff)
downloadCMake-dce07caf0b59c120c0cc64199bf355842751fd19.zip
CMake-dce07caf0b59c120c0cc64199bf355842751fd19.tar.gz
CMake-dce07caf0b59c120c0cc64199bf355842751fd19.tar.bz2
ENH: fix warning
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 596ce97..a7e908d 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -138,7 +138,7 @@ void cmGlobalUnixMakefileGenerator3::WriteMainMakefile()
depends,
no_commands);
- lg->WriteMakeVariables(makefileStream, cmLocalGenerator::HOME_OUTPUT);
+ lg->WriteMakeVariables(makefileStream);
lg->WriteSpecialTargetsTop(makefileStream);
@@ -205,7 +205,7 @@ void cmGlobalUnixMakefileGenerator3::WriteMainMakefile2()
"The main recursive all target", "all",
no_commands, no_commands);
- lg->WriteMakeVariables(makefileStream,cmLocalGenerator::HOME_OUTPUT);
+ lg->WriteMakeVariables(makefileStream);
// write the target convenience rules
unsigned int i;