From fdb605dd0921b1b83ae6ae7fb2c169c3baa7be60 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Wed, 15 Mar 2006 16:32:40 -0500 Subject: BUG: fix warning --- Source/cmLocalUnixMakefileGenerator3.cxx | 4 ++-- 1 file 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. -- cgit v0.12