diff options
Diffstat (limited to 'Master/tlpkg/bin')
-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 |