From a4dc7f7b97ef4fd95b7e329f8d18286aef77d9b4 Mon Sep 17 00:00:00 2001 From: Amitha Perera Date: Fri, 7 Dec 2001 18:15:18 -0500 Subject: [PATCH] BUG: the rule for generating a library no longer has the full path, and so the dependency targets shouldn't, either. --- Source/cmUnixMakefileGenerator.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 3b532408d..5c5f44f43 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)