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 std::string
cmLocalUnixMakefileGenerator3 cmLocalUnixMakefileGenerator3
::GetRecursiveMakeCall(const char *Makefile, const char* tgt) ::GetRecursiveMakeCall(const char *makefile, const char* tgt)
{ {
// Call make on the given file. // Call make on the given file.
std::string cmd; std::string cmd;
cmd += "$(MAKE) -f "; cmd += "$(MAKE) -f ";
cmd += Makefile; cmd += makefile;
cmd += " "; cmd += " ";
// Passg down verbosity level. // Passg down verbosity level.