diff options
Diffstat (limited to 'java/makebindist.py')
-rwxr-xr-x | java/makebindist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/makebindist.py b/java/makebindist.py index 6a7f05dc895..ddc7b3c6f8e 100755 --- a/java/makebindist.py +++ b/java/makebindist.py @@ -203,7 +203,8 @@ if strip: # # Create binary archives. # -os.system("tar cvzf " + icever + "-bin-" + platform + ".tar.gz " + icever) +os.system("tar cvf " + icever + "-bin-" + platform + ".tar " + icever) +os.system("gzip -9 " + icever + "-bin-" + platform + ".tar") os.system("zip -9ry " + icever + "-bin-" + platform + ".zip " + icever) # |