JOM: Pass /NOLOGO when driving builds as is done for NMake
This fixes RunCMake.(Configure|configure_file|try_compile) test failures that failed to match empty stderr due to jom printing its identification line.
This commit is contained in:
parent
56be75b310
commit
3e98ebbaef
|
@ -563,7 +563,7 @@ void cmGlobalUnixMakefileGenerator3
|
|||
|
||||
// Since we have full control over the invocation of nmake, let us
|
||||
// make it quiet.
|
||||
if ( this->GetName() == "NMake Makefiles" )
|
||||
if (cmHasLiteralPrefix(this->GetName(), "NMake Makefiles"))
|
||||
{
|
||||
makeCommand.push_back("/NOLOGO");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue