Merge topic 'fix-JOM-quiet-make'

3e98ebba JOM: Pass /NOLOGO when driving builds as is done for NMake
This commit is contained in:
Brad King 2015-03-04 08:52:12 -05:00 committed by CMake Topic Stage
commit 4ef21206e6
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}