| OLD | NEW |
| 1 #!/usr/bin/perl | 1 #!/usr/bin/perl |
| 2 # ***** BEGIN LICENSE BLOCK ***** | 2 # ***** BEGIN LICENSE BLOCK ***** |
| 3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 4 # | 4 # |
| 5 # The contents of this file are subject to the Mozilla Public License Version | 5 # The contents of this file are subject to the Mozilla Public License Version |
| 6 # 1.1 (the "License"); you may not use this file except in compliance with | 6 # 1.1 (the "License"); you may not use this file except in compliance with |
| 7 # the License. You may obtain a copy of the License at | 7 # the License. You may obtain a copy of the License at |
| 8 # http://www.mozilla.org/MPL/ | 8 # http://www.mozilla.org/MPL/ |
| 9 # | 9 # |
| 10 # Software distributed under the License is distributed on an "AS IS" basis, | 10 # Software distributed under the License is distributed on an "AS IS" basis, |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 # $PATH (/bin:/sbin:/usr/bin:/usr/sbin). Otherwise, go by absolute | 301 # $PATH (/bin:/sbin:/usr/bin:/usr/sbin). Otherwise, go by absolute |
| 302 # path. These may be overridden with --config. | 302 # path. These may be overridden with --config. |
| 303 %gConfig = ('cmd_bless' => 'bless', | 303 %gConfig = ('cmd_bless' => 'bless', |
| 304 'cmd_chmod' => 'chmod', | 304 'cmd_chmod' => 'chmod', |
| 305 'cmd_diskutil' => 'diskutil', | 305 'cmd_diskutil' => 'diskutil', |
| 306 'cmd_du' => 'du', | 306 'cmd_du' => 'du', |
| 307 'cmd_hdid' => 'hdid', | 307 'cmd_hdid' => 'hdid', |
| 308 'cmd_hdiutil' => 'hdiutil', | 308 'cmd_hdiutil' => 'hdiutil', |
| 309 'cmd_mkdir' => 'mkdir', | 309 'cmd_mkdir' => 'mkdir', |
| 310 'cmd_mktemp' => 'mktemp', | 310 'cmd_mktemp' => 'mktemp', |
| 311 'cmd_Rez' => '/Developer/Tools/Rez', | 311 'cmd_Rez' => '/usr/bin/Rez', |
| 312 'cmd_rm' => 'rm', | 312 'cmd_rm' => 'rm', |
| 313 'cmd_rsync' => 'rsync', | 313 'cmd_rsync' => 'rsync', |
| 314 'cmd_SetFile' => '/Developer/Tools/SetFile', | 314 'cmd_SetFile' => '/usr/bin/SetFile', |
| 315 | 315 |
| 316 # create_directly indicates whether hdiutil create supports | 316 # create_directly indicates whether hdiutil create supports |
| 317 # -srcfolder and -srcdevice. It does on >= 10.3 (Panther). | 317 # -srcfolder and -srcdevice. It does on >= 10.3 (Panther). |
| 318 # This is fixed up for earlier systems below. If false, | 318 # This is fixed up for earlier systems below. If false, |
| 319 # hdiutil create is used to create empty disk images that | 319 # hdiutil create is used to create empty disk images that |
| 320 # are manually filled. | 320 # are manually filled. |
| 321 'create_directly' => 1, | 321 'create_directly' => 1, |
| 322 | 322 |
| 323 # If hdiutil attach -mountpoint exists, use it to avoid | 323 # If hdiutil attach -mountpoint exists, use it to avoid |
| 324 # mounting disk images in the default /Volumes. This reduces | 324 # mounting disk images in the default /Volumes. This reduces |
| (...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1514 " [--license <file>] (plain text license agreement)\n". | 1514 " [--license <file>] (plain text license agreement)\n". |
| 1515 " [--resource <file>] (flat .r files to merge)\n". | 1515 " [--resource <file>] (flat .r files to merge)\n". |
| 1516 " [--icon <icns-file>] (volume icon)\n". | 1516 " [--icon <icns-file>] (volume icon)\n". |
| 1517 " [--attribute <a>:<file>] (set file attributes)\n". | 1517 " [--attribute <a>:<file>] (set file attributes)\n". |
| 1518 " [--idme] (make Internet-enabled image)\n". | 1518 " [--idme] (make Internet-enabled image)\n". |
| 1519 " [--sourcefile] (treat --source as a file)\n". | 1519 " [--sourcefile] (treat --source as a file)\n". |
| 1520 " [--verbosity <level>] (0, 1, 2; default=2)\n". | 1520 " [--verbosity <level>] (0, 1, 2; default=2)\n". |
| 1521 " [--dry-run] (print what would be done)\n"); | 1521 " [--dry-run] (print what would be done)\n"); |
| 1522 return; | 1522 return; |
| 1523 } | 1523 } |
| OLD | NEW |