Преглед на файлове

ENH: Use ${MAKE} instead of make for dependent library rules

Amitha Perera преди 24 години
родител
ревизия
cdb3f325b5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Source/cmUnixMakefileGenerator.cxx

+ 1 - 1
Source/cmUnixMakefileGenerator.cxx

@@ -615,7 +615,7 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
       // put out a rule to build the library if it does not exist
       fout << libpath.c_str()
            << ":\n\tcd " << cacheValue 
-           << "; make " << m_LibraryOutputPath << library.c_str() << "\n\n";
+           << "; ${MAKE} " << m_LibraryOutputPath << library.c_str() << "\n\n";
       }
     }
 }