diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-07 23:40:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-07 23:40:07 +0000 |
commit | a81e5e10485d2d24498661bd2bfcdf35d4e5d2c3 (patch) | |
tree | 293e8514509ef1fbef0c97e526211c0bfce9c499 | |
parent | 26a9a99cce2d8eea612686e05061b1c05f9149db (diff) |
not sure what we're going to do, but it isn't MAKELIVE.
git-svn-id: svn://tug.org/texlive/trunk@18150 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index 512850c6556..60c8769fa24 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -4,7 +4,7 @@ # Create the .iso file system images for TeX Live: # a) live: the complete uncompressed system (for DVD) # -# Copyright 2007, 2008, 2009 Karl Berry. +# Copyright 2007, 2008, 2009, 2010 Karl Berry. # Copyright 2003, 2004, 2005 Sebastian Rahtz. # # This file is licensed under the GNU General Public License version 2 @@ -16,7 +16,11 @@ # # From 2004-2007, we also produced: # b) inst: compressed zip files and installer only (CD) -# but this was dropped in 2008. +# but this was dropped in 2008, and restored in 2010 (for DVD). +# +# Until 2010, we also produced: +# a) live: full live distribution which can be run as is (CD/DVD) +# but this was dropped in 2010. TeX Live is no longer live. Oh well. # # Send bug reports or suggestions to tex-live@tug.org. @@ -30,7 +34,7 @@ master=`cd ../.. && /bin/pwd` test -z "$master" && exit 1 NAME=texlive -V=2009 +V=2010 D=`date +%Y%m%d` debug=${OVERRIDE_DEBUG-false} @@ -153,12 +157,12 @@ MAKETAR () # main program. # Add our exact version to the release file. -printf "\ntexlive-$D\n" >>$master/release-texlive.txt +#printf "\ntexlive-$D\n" >>$master/release-texlive.txt $maketar && MAKETAR -$makelive && MAKELIVE +#$makelive && MAKELIVE # Undo the version. -svn revert $master/release-texlive.txt +#svn revert $master/release-texlive.txt exit 0 |