summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-03-04 13:52:12 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-03-04 13:52:12 (GMT)
commit4ef21206e66cc993669b0fb532039d84c990c82e (patch)
tree6992438f5f6f71750f1dd479a551a81f9a680558 /Source
parent49ce2c999f797cb6490bc52c2e8d6d2fb431f175 (diff)
parent3e98ebbaef9cfa1544f960320ebc4258e82909bd (diff)
downloadCMake-4ef21206e66cc993669b0fb532039d84c990c82e.zip
CMake-4ef21206e66cc993669b0fb532039d84c990c82e.tar.gz
CMake-4ef21206e66cc993669b0fb532039d84c990c82e.tar.bz2
Merge topic 'fix-JOM-quiet-make'
3e98ebba JOM: Pass /NOLOGO when driving builds as is done for NMake
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index 1d2dd34..5701564 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/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");
}