BUG: fix warning
This commit is contained in:
parent
44e6852322
commit
fdb605dd09
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue