summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-15 22:19:35 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-20 22:12:51 (GMT)
commit3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89 (patch)
treea061a8265c488776fde783ae66fae36d471f9531 /Source/cmMakefile.h
parentf438cd373131b85dd71b1f902c56fb3584cf8f87 (diff)
downloadCMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.zip
CMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.tar.gz
CMake-3a68c323ba4b9f269fe9fe45fc2a1bcc2de4ac89.tar.bz2
cmMakefile: Fix wrong parameter names.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 73d6910..8da2ccd 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -441,7 +441,7 @@ public:
*/
void SetHomeDirectory(const std::string& dir);
const char* GetHomeDirectory() const;
- void SetHomeOutputDirectory(const std::string& lib);
+ void SetHomeOutputDirectory(const std::string& dir);
const char* GetHomeOutputDirectory() const;
//@}
@@ -476,9 +476,9 @@ public:
{
return this->cmStartDirectory.c_str();
}
- void SetStartOutputDirectory(const std::string& lib)
+ void SetStartOutputDirectory(const std::string& dir)
{
- this->StartOutputDirectory = lib;
+ this->StartOutputDirectory = dir;
cmSystemTools::ConvertToUnixSlashes(this->StartOutputDirectory);
this->StartOutputDirectory =
cmSystemTools::CollapseFullPath(this->StartOutputDirectory);