BUG: Fixed computation of 'object' name for MACOSX_PACKAGE_LOCATION source files.
This commit is contained in:
parent
ab480c8e7a
commit
cc0386f7ea
|
@ -1724,8 +1724,8 @@ cmLocalUnixMakefileGenerator3
|
||||||
}
|
}
|
||||||
obj += fileTargetDirectory;
|
obj += fileTargetDirectory;
|
||||||
|
|
||||||
obj = cmSystemTools::RelativePath
|
// Object names are specified relative to the current build dir.
|
||||||
(this->Makefile->GetHomeOutputDirectory(), obj.c_str());
|
obj = this->Convert(obj.c_str(), START_OUTPUT);
|
||||||
obj += "/";
|
obj += "/";
|
||||||
obj += objectName;
|
obj += objectName;
|
||||||
return obj;
|
return obj;
|
||||||
|
|
Loading…
Reference in New Issue