summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-05-19 19:00:35 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-05-19 19:00:35 (GMT)
commit463c8e07a818c539dd9dbb37034646a08c7622e3 (patch)
tree721fb1941ce03a7c3f7e46ec356580036db41318 /Source/cmLocalUnixMakefileGenerator3.cxx
parent6adbe6d049a50ae128f460bbd3802052b25c67e3 (diff)
downloadCMake-463c8e07a818c539dd9dbb37034646a08c7622e3.zip
CMake-463c8e07a818c539dd9dbb37034646a08c7622e3.tar.gz
CMake-463c8e07a818c539dd9dbb37034646a08c7622e3.tar.bz2
ENH: fixes for subdir build Makefiles
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 7f32628..a0d9ca7 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -2916,7 +2916,7 @@ cmLocalUnixMakefileGenerator3
//----------------------------------------------------------------------------
void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
{
- // only write the locla Makefile if we are not at the top
+ // only write the local Makefile if we are not at the top
if (!m_Parent)
{
return;
@@ -2943,7 +2943,7 @@ void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
// Write the empty all rule.
std::string dir = m_Makefile->GetStartOutputDirectory();
- dir += "/directory";
+ dir += "/directorystart";
dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE);
this->CreateJumpCommand(commands,dir);
this->WriteMakeRule(ruleFileStream, "The main all target", "all", depends, commands);