diff options
author | Amitha Perera <perera@cs.rpi.edu> | 2001-06-27 16:09:56 (GMT) |
---|---|---|
committer | Amitha Perera <perera@cs.rpi.edu> | 2001-06-27 16:09:56 (GMT) |
commit | cdb3f325b5a4168cea895ec0e4ee517ad052fa4a (patch) | |
tree | a9f1323c635c1d1bdeab17e9aaa01bb1c106937c | |
parent | 7eb2940eed64a0d516d9a8b713688f1db868e366 (diff) | |
download | CMake-cdb3f325b5a4168cea895ec0e4ee517ad052fa4a.zip CMake-cdb3f325b5a4168cea895ec0e4ee517ad052fa4a.tar.gz CMake-cdb3f325b5a4168cea895ec0e4ee517ad052fa4a.tar.bz2 |
ENH: Use ${MAKE} instead of make for dependent library rules
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index c5ccfbe..476dc34 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/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"; } } } |