summaryrefslogtreecommitdiffstats
path: root/chrome/tools/build
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-11 16:33:04 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-11 16:33:04 +0000
commit9bd441e721dcb221a7ffd6b87dab749dc60897f6 (patch)
treef8110ba5011f99279243b383285a65dae40ee9f6 /chrome/tools/build
parent118512e04653b4e4a18a12270a63269063f33c74 (diff)
downloadchromium_src-9bd441e721dcb221a7ffd6b87dab749dc60897f6.zip
chromium_src-9bd441e721dcb221a7ffd6b87dab749dc60897f6.tar.gz
chromium_src-9bd441e721dcb221a7ffd6b87dab749dc60897f6.tar.bz2
Allow hdiutil makehybrid -hfs-openfolder to be disabled by the existing
openfolder_bless configuration parameter. Disk images containing dirpatcher/goobsdiff updates should rarely fall directly into users' hands, but when they do, they don't need to open anything when they're mounted. BUG=45017 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/build')
-rwxr-xr-xchrome/tools/build/mac/pkg-dmg2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/build/mac/pkg-dmg b/chrome/tools/build/mac/pkg-dmg
index 7ec117d..3458aab 100755
--- a/chrome/tools/build/mac/pkg-dmg
+++ b/chrome/tools/build/mac/pkg-dmg
@@ -931,7 +931,7 @@ sub diskImageMaker($$$$$$$$) {
$hybridImage = giveExtension($tempDir.'/hybrid', '.dmg');
if(command($gConfig{'cmd_hdiutil'}, 'makehybrid', '-hfs',
- '-hfs-volume-name', $name,
+ '-hfs-volume-name', $name,
($gConfig{'openfolder_bless'} ? ('-hfs-openfolder', $source) : ()),
'-ov', $source, '-o', $hybridImage) != 0) {
cleanupDie('hdiutil makehybrid failed');