summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2020-05-13 14:20:58 +0300
committerTor Lillqvist <tml@collabora.com>2020-05-13 16:46:09 +0200
commit1722e7235080fe210fa7f0246f32c2838fef601a (patch)
tree0ea95aef6da78a155f47a7005bad98d5c613f799 /solenv
parentebf1eec2b66fb3a8302f8d4da22c195367e12eef (diff)
The dmg needs more space also in the ENABLE_DEBUG case
(Not something that is used when actually building for distribution, sure, but when testing.) Change-Id: I67410a8cd9627c5a2c19f58df4529a44e488c961 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94119 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.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 a0a7163ad31a..6b62092d0ab0 100644
--- a/solenv/bin/modules/installer/simplepackage.pm
+++ b/solenv/bin/modules/installer/simplepackage.pm
@@ -454,7 +454,7 @@ sub create_package
}
}
my $megabytes = 1500;
- $megabytes = 2000 if $ENV{'ENABLE_DBGUTIL'};
+ $megabytes = 2000 if $ENV{'ENABLE_DBGUTIL'} || $ENV{'ENABLE_DEBUG'};
$systemcall = "cd $localtempdir && hdiutil create -megabytes $megabytes -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 &&";