aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/createDistPackage.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/createDistPackage.py')
-rwxr-xr-xscripts/createDistPackage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/createDistPackage.py b/scripts/createDistPackage.py
index 10207993c1..41c36f9ee9 100755
--- a/scripts/createDistPackage.py
+++ b/scripts/createDistPackage.py
@@ -58,7 +58,7 @@ def main():
common.codesign(tempdir)
# package
zip_source = os.path.join(tempdir, '*') if arguments.exclude_toplevel else tempdir
- subprocess.check_call([arguments.sevenzip, 'a',
+ subprocess.check_call([arguments.sevenzip, 'a', '-mmt2',
arguments.target_archive, zip_source])
finally:
shutil.rmtree(tempdir_base)