BUG: the rule for generating a library no longer has the full path, and so the

dependency targets shouldn't, either.
This commit is contained in:
Amitha Perera 2001-12-07 18:15:18 -05:00
parent 0daca0a5f3
commit a4dc7f7b97
1 changed files with 2 additions and 2 deletions

View File

@ -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)