mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-01 12:18:36 -06:00
BUG: Compute HomeRelativeOutputPath following the rules of RelativePathTopBinary by going through the Convert() method. This supports out-of-binary build trees without using relative paths that go outside trees managed by CMake.
This commit is contained in:
@@ -64,11 +64,11 @@ cmLocalUnixMakefileGenerator3::~cmLocalUnixMakefileGenerator3()
|
||||
//----------------------------------------------------------------------------
|
||||
void cmLocalUnixMakefileGenerator3::Configure()
|
||||
{
|
||||
// Include the rule file for each object.
|
||||
this->HomeRelativeOutputPath =
|
||||
cmSystemTools::RelativePath(this->Makefile->GetHomeOutputDirectory(),
|
||||
this->Makefile->GetStartOutputDirectory());
|
||||
if (this->HomeRelativeOutputPath.size())
|
||||
// Compute the path to use when referencing the current output
|
||||
// directory from the top output directory.
|
||||
this->HomeRelativeOutputPath =
|
||||
this->Convert(this->Makefile->GetStartOutputDirectory(), HOME_OUTPUT);
|
||||
if(!this->HomeRelativeOutputPath.empty())
|
||||
{
|
||||
this->HomeRelativeOutputPath += "/";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user