diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-26 16:20:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-26 16:20:03 +0000 |
commit | 17874d19868d99ec52a836881952618c2cf1a3bf (patch) | |
tree | dbbed80b45cbe46bbdb154a59a1dff71567fbf81 /Master/tlpkg | |
parent | 13cdd627fa3af242699a8bbf075f9f3bcbf7b75e (diff) |
try -1 compression for xz
git-svn-id: svn://tug.org/texlive/trunk@18513 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index daac83db526..618aa78c939 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -34,6 +34,8 @@ cd $mydir || exit 1 # the Master/tlpkg/bin directory master=`cd ../.. && /bin/pwd` test -z "$master" && exit 1 +XZ_OPT=-1; export XZ_OPT # compression level, -9 for slowest-but-most + NAME=texlive V=2010 D=`date +%Y%m%d` @@ -106,7 +108,7 @@ MAKEINST () # also make compressed version, helps people downloading test images. # this takes two hours or so, so write to a temp file and then rename. - xz -9 -v <$iso >$iso.xz.part + xz -v <$iso >$iso.xz.part mv $iso.xz.part $iso.xz # make checksums |