diff options
author | Amitha Perera <perera@cs.rpi.edu> | 2001-12-07 23:15:18 (GMT) |
---|---|---|
committer | Amitha Perera <perera@cs.rpi.edu> | 2001-12-07 23:15:18 (GMT) |
commit | a4dc7f7b97ef4fd95b7e329f8d18286aef77d9b4 (patch) | |
tree | aaa75929de03e682a345d384311e73da6262f0ba /Source | |
parent | 0daca0a5f365dc1c10a5a2f2cd5585227aa7c8ed (diff) | |
download | CMake-a4dc7f7b97ef4fd95b7e329f8d18286aef77d9b4.zip CMake-a4dc7f7b97ef4fd95b7e329f8d18286aef77d9b4.tar.gz CMake-a4dc7f7b97ef4fd95b7e329f8d18286aef77d9b4.tar.bz2 |
BUG: the rule for generating a library no longer has the full path, and so the
dependency targets shouldn't, either.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 3b53240..5c5f44f 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -866,12 +866,12 @@ void cmUnixMakefileGenerator::OutputDependLibs(std::ostream& fout) void cmUnixMakefileGenerator::OutputBuildLibraryInDir(std::ostream& fout, const char* path, - const char* , + const char* library, const char* fullpath) { fout << cmSystemTools::EscapeSpaces(fullpath) << ":\n\tcd " << cmSystemTools::EscapeSpaces(path) - << "; $(MAKE) " << fullpath << "\n\n"; + << "; $(MAKE) " << library << "\n\n"; } bool cmUnixMakefileGenerator::SamePath(const char* path1, const char* path2) |