[Cmake-commits] [cmake-commits] king committed cmMakefileTargetGenerator.cxx 1.96 1.97

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Apr 14 09:08:38 EDT 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv9295/Source

Modified Files:
	cmMakefileTargetGenerator.cxx 
Log Message:
BUG: When MACOSX_PACKAGE_LOCATION specifies Headers/foo we must still create the Headers symlink.


Index: cmMakefileTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileTargetGenerator.cxx,v
retrieving revision 1.96
retrieving revision 1.97
diff -C 2 -d -r1.96 -r1.97
*** cmMakefileTargetGenerator.cxx	11 Apr 2008 17:13:15 -0000	1.96
--- cmMakefileTargetGenerator.cxx	14 Apr 2008 13:08:35 -0000	1.97
***************
*** 335,340 ****
    cmSystemTools::MakeDirectory(macdir.c_str());
  
!   // Record use of this content location.
!   this->MacContentFolders.insert(pkgloc);
  
    // Get the input file location.
--- 335,345 ----
    cmSystemTools::MakeDirectory(macdir.c_str());
  
!   // 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.



More information about the Cmake-commits mailing list