diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-15 22:50:59 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:12:51 (GMT) |
commit | 044dc81504e0d34d7c84a20d333b2177a2c86b54 (patch) | |
tree | 3f1bd08ea4cf15e80c4b2417d81162df6cf6f420 /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | d67e8f24b89b70782c977b4db628377be875f938 (diff) | |
download | CMake-044dc81504e0d34d7c84a20d333b2177a2c86b54.zip CMake-044dc81504e0d34d7c84a20d333b2177a2c86b54.tar.gz CMake-044dc81504e0d34d7c84a20d333b2177a2c86b54.tar.bz2 |
Use the Home directories from the cmake class where intended.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 3deaec2..73d3dc2 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -584,9 +584,9 @@ void cmGlobalUnixMakefileGenerator3 (this->CreateLocalGenerator()); // set the Start directories lg->GetMakefile()->SetStartDirectory - (this->CMakeInstance->GetStartDirectory()); + (this->CMakeInstance->GetHomeDirectory()); lg->GetMakefile()->SetStartOutputDirectory - (this->CMakeInstance->GetStartOutputDirectory()); + (this->CMakeInstance->GetHomeOutputDirectory()); } std::string tname = targetName; |