diff options
author | Brad King <brad.king@kitware.com> | 2015-03-02 15:08:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-02 15:08:09 (GMT) |
commit | 3e98ebbaef9cfa1544f960320ebc4258e82909bd (patch) | |
tree | 366fd932e995184568217c49ff861395977d309a /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | 56be75b3107b210631919c13496060d648f97b14 (diff) | |
download | CMake-3e98ebbaef9cfa1544f960320ebc4258e82909bd.zip CMake-3e98ebbaef9cfa1544f960320ebc4258e82909bd.tar.gz CMake-3e98ebbaef9cfa1544f960320ebc4258e82909bd.tar.bz2 |
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.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-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"); } |