diff options
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlnet | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index bbe6dba7961..8925ccbaf67 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -73,7 +73,7 @@ sub main if (! $opt_recreate) { if (! -r "$opt_location/tlpkg/texlive.tlpdb") { - warn "Cannot load tlpdb from $opt_location, going into recreate mode!"; + tlwarn ("$0: Cannot load tlpdb from $opt_location, continuing in recreate mode.\n"); $opt_recreate = 1; } } diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index 25abe16f76f..7a6f9ed8314 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -85,7 +85,7 @@ MAKELIVE () # also make compressed version, helps people downloading test images. # this takes two hours or so, so write to a temp file and then rename. - lzma -v <$live_iso >$live_iso.lzma.part + lzma -9 -v <$live_iso >$live_iso.lzma.part mv $live_iso.lzma.part $live_iso.lzma # make checksums diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet index 1577c6958d5..5d9074ce4b8 100755 --- a/Master/tlpkg/bin/tl-update-tlnet +++ b/Master/tlpkg/bin/tl-update-tlnet @@ -36,6 +36,7 @@ if test ! -r "$tlweb/tlpkg/texlive.tlpdb"; then echo "$0: no tlpdb in $tlweb/tlpkg, goodbye." >&2 exit 1 fi +# Keep the default out of ~ftp/texlive/tlnet, which CTAN mirrors. test -z "$tlwebtrybase" \ && tlwebtrybase=`cd $tlweb/../.. && pwd`/tlnet-trial-`date +%y%m%d` tlwebtry=$tlwebtrybase/tlsrc.try |