ソースを参照

Merge topic 'cpack-dmg-applescript-argv'

351c1b1a CPack: Pass volume mount name to AppleScript instead of volume name.

Acked-by: Kitware Robot <[email protected]>
Merge-request: !1069
Brad King 8 年 前
コミット
b7e8b0e260
1 ファイル変更3 行追加1 行削除
  1. 3 1
      Source/CPack/cmCPackDragNDropGenerator.cxx

+ 3 - 1
Source/CPack/cmCPackDragNDropGenerator.cxx

@@ -447,6 +447,8 @@ int cmCPackDragNDropGenerator::CreateDMG(const std::string& src_dir,
     cmsys::RegularExpression mountpoint_regex(".*(/Volumes/[^\n]+)\n.*");
     mountpoint_regex.find(attach_output.c_str());
     std::string const temp_mount = mountpoint_regex.match(1);
+    std::string const temp_mount_name =
+      temp_mount.substr(sizeof("/Volumes/") - 1);
 
     // Remove dummy padding file so we have enough space on RW image ...
     std::ostringstream dummy_padding;
@@ -480,7 +482,7 @@ int cmCPackDragNDropGenerator::CreateDMG(const std::string& src_dir,
       std::ostringstream setup_script_command;
       setup_script_command << "osascript"
                            << " \"" << cpack_dmg_ds_store_setup_script << "\""
-                           << " \"" << cpack_dmg_volume_name << "\"";
+                           << " \"" << temp_mount_name << "\"";
       std::string error;
       if (!this->RunCommand(setup_script_command, &error)) {
         cmCPackLogger(cmCPackLog::LOG_ERROR,