diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-05-13 17:03:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-05-13 21:27:00 +0200 |
commit | cbc9c1ef729a09abdda97f74469d4d600ae6974b (patch) | |
tree | 20822712b9fd928d0b652956bfa282946bffe180 | |
parent | e8fe7189a175ee00b5d76a89345137a3dc0fb8d9 (diff) |
ENABLE_DBGUTIL=TRUE implies ENABLE_DEBUG=TRUE
Change-Id: I709561ba910ff2274a40e578412ecd7040886959
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94144
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | solenv/bin/modules/installer/simplepackage.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm index 6b62092d0ab0..d55208bce0f8 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'} || $ENV{'ENABLE_DEBUG'}; + $megabytes = 2000 if $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 &&"; |