diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 21:32:40 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 21:32:40 (GMT) |
commit | fdb605dd0921b1b83ae6ae7fb2c169c3baa7be60 (patch) | |
tree | 12965bb51aa6b3a5ca8fc48ca46531fc2e913ba7 /Source | |
parent | 44e685232217fbaa19a6ec5c77c57f8336db683a (diff) | |
download | CMake-fdb605dd0921b1b83ae6ae7fb2c169c3baa7be60.zip CMake-fdb605dd0921b1b83ae6ae7fb2c169c3baa7be60.tar.gz CMake-fdb605dd0921b1b83ae6ae7fb2c169c3baa7be60.tar.bz2 |
BUG: fix warning
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index b436a81..b590ed8 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1574,12 +1574,12 @@ void cmLocalUnixMakefileGenerator3::WriteDisclaimer(std::ostream& os) //---------------------------------------------------------------------------- std::string cmLocalUnixMakefileGenerator3 -::GetRecursiveMakeCall(const char *Makefile, const char* tgt) +::GetRecursiveMakeCall(const char *makefile, const char* tgt) { // Call make on the given file. std::string cmd; cmd += "$(MAKE) -f "; - cmd += Makefile; + cmd += makefile; cmd += " "; // Passg down verbosity level. |