diff options
author | Brad King <brad.king@kitware.com> | 2015-03-04 13:52:12 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-03-04 13:52:12 (GMT) |
commit | 4ef21206e66cc993669b0fb532039d84c990c82e (patch) | |
tree | 6992438f5f6f71750f1dd479a551a81f9a680558 | |
parent | 49ce2c999f797cb6490bc52c2e8d6d2fb431f175 (diff) | |
parent | 3e98ebbaef9cfa1544f960320ebc4258e82909bd (diff) | |
download | CMake-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
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 2 |
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"); } |