BUG: fix warning

This commit is contained in:
Ken Martin 2006-03-15 16:32:40 -05:00
parent 44e6852322
commit fdb605dd09
1 changed files with 2 additions and 2 deletions

View File

@ -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.