mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 14:50:15 -05:00
Type || should have been &&
This commit is contained in:
@@ -1861,7 +1861,7 @@ void cmUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
|
||||
{
|
||||
replace = command;
|
||||
m_Makefile->ExpandVariablesInString(replace);
|
||||
if(replace[0] != '-' || replace.find("echo") != 0
|
||||
if(replace[0] != '-' && replace.find("echo") != 0
|
||||
&& replace.find("$(MAKE)") != 0)
|
||||
{
|
||||
fout << "\t" << "echo " << replace.c_str() << "\n";
|
||||
|
||||
Reference in New Issue
Block a user