summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2015-05-23 15:18:22 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2015-05-25 10:12:27 +0000
commit896cd639125e00967640daea4f716786829e0b87 (patch)
treecb5190d0df58062968ee739490b0fc9f7b9a4026 /solenv
parent55c6bd93e9c02b2160b82c0d489d05ba31a0f13c (diff)
macosx: work around hdiutil error -5341 on dmg packaging
Change-Id: Iddd265fca9769d9afac67d37877bd3a99068f368 Reviewed-on: https://gerrit.libreoffice.org/15884 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/simplepackage.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm
index d70394e786bd..ac337988af6e 100644
--- a/solenv/bin/modules/installer/simplepackage.pm
+++ b/solenv/bin/modules/installer/simplepackage.pm
@@ -423,7 +423,7 @@ sub create_package
}
}
- $systemcall = "cd $localtempdir && hdiutil create -srcfolder $folder $archive -ov -fs HFS+ -volname \"$volume_name\" -format UDBZ";
+ $systemcall = "cd $localtempdir && hdiutil create -megabytes 1500 -srcfolder $folder $archive -ov -fs HFS+ -volname \"$volume_name\" -format UDBZ";
if (( $ref ne "" ) && ( $$ref ne "" )) {
$systemcall .= " && hdiutil unflatten $archive && Rez -a $$ref -o $archive && hdiutil flatten $archive &&";
}