diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-15 22:19:35 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:12:51 (GMT) |
commit | 3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89 (patch) | |
tree | a061a8265c488776fde783ae66fae36d471f9531 /Source/cmMakefile.cxx | |
parent | f438cd373131b85dd71b1f902c56fb3584cf8f87 (diff) | |
download | CMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.zip CMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.tar.gz CMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.tar.bz2 |
cmMakefile: Fix wrong parameter names.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 7be920d..6c2b8b2 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3408,9 +3408,9 @@ const char* cmMakefile::GetHomeOutputDirectory() const return this->HomeOutputDirectory.c_str(); } -void cmMakefile::SetHomeOutputDirectory(const std::string& lib) +void cmMakefile::SetHomeOutputDirectory(const std::string& dir) { - this->HomeOutputDirectory = lib; + this->HomeOutputDirectory = dir; cmSystemTools::ConvertToUnixSlashes(this->HomeOutputDirectory); this->AddDefinition("CMAKE_BINARY_DIR", this->GetHomeOutputDirectory()); if ( !this->GetDefinition("CMAKE_CURRENT_BINARY_DIR") ) |