mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-23 07:28:51 -06:00
BUG: When MACOSX_PACKAGE_LOCATION specifies Headers/foo we must still create the Headers symlink.
This commit is contained in:
@@ -334,8 +334,13 @@ void cmMakefileTargetGenerator::WriteMacOSXContentRules(cmSourceFile& source,
|
||||
macdir += pkgloc;
|
||||
cmSystemTools::MakeDirectory(macdir.c_str());
|
||||
|
||||
// Record use of this content location.
|
||||
this->MacContentFolders.insert(pkgloc);
|
||||
// Record use of this content location. Only the first level
|
||||
// directory is needed.
|
||||
{
|
||||
std::string loc = pkgloc;
|
||||
loc = loc.substr(0, loc.find('/'));
|
||||
this->MacContentFolders.insert(loc);
|
||||
}
|
||||
|
||||
// Get the input file location.
|
||||
std::string input = source.GetFullPath();
|
||||
|
||||
Reference in New Issue
Block a user