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:
parent
0daca0a5f3
commit
a4dc7f7b97
|
@ -866,12 +866,12 @@ void cmUnixMakefileGenerator::OutputDependLibs(std::ostream& fout)
|
||||||
|
|
||||||
void cmUnixMakefileGenerator::OutputBuildLibraryInDir(std::ostream& fout,
|
void cmUnixMakefileGenerator::OutputBuildLibraryInDir(std::ostream& fout,
|
||||||
const char* path,
|
const char* path,
|
||||||
const char* ,
|
const char* library,
|
||||||
const char* fullpath)
|
const char* fullpath)
|
||||||
{
|
{
|
||||||
fout << cmSystemTools::EscapeSpaces(fullpath)
|
fout << cmSystemTools::EscapeSpaces(fullpath)
|
||||||
<< ":\n\tcd " << cmSystemTools::EscapeSpaces(path)
|
<< ":\n\tcd " << cmSystemTools::EscapeSpaces(path)
|
||||||
<< "; $(MAKE) " << fullpath << "\n\n";
|
<< "; $(MAKE) " << library << "\n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cmUnixMakefileGenerator::SamePath(const char* path1, const char* path2)
|
bool cmUnixMakefileGenerator::SamePath(const char* path1, const char* path2)
|
||||||
|
|
Loading…
Reference in New Issue