Browse Source

Merge topic 'fix-JOM-quiet-make'

3e98ebba JOM: Pass /NOLOGO when driving builds as is done for NMake
Brad King 10 years ago
parent
commit
4ef21206e6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmGlobalUnixMakefileGenerator3.cxx

+ 1 - 1
Source/cmGlobalUnixMakefileGenerator3.cxx

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