diff options
author | Karl Berry <karl@freefriends.org> | 2010-07-11 23:38:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-07-11 23:38:12 +0000 |
commit | 3511984c711c8277e5f8df7bdc4789597dbf9727 (patch) | |
tree | 7db128e42aacbfb8c99b6475509bdcd57bcd09f6 /Master/tlpkg/bin/tl-update-images | |
parent | 3eee78a534fe08665e4e621b05f447c0ddf07523 (diff) |
DVD is no longer live
git-svn-id: svn://tug.org/texlive/trunk@19386 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-update-images')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index 9929747722a..c09a610df25 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -75,20 +75,28 @@ MAKEINST () rm -rf $imgdir mkdir $imgdir - # files and just a couple small dirs from master. + # files and a few dirs from master. cp -p $master/.mkisofsrc $imgdir # mkisofs control cp -p $master/* $imgdir 2>/dev/null || true # intentionally skip dirs cp -pr $master/readme* $master/source $imgdir # do these few dirs + # included preformatted doc in new dir for the DVD. + mkdir $imgdir/texlive-doc + (cd $master/texmf/doc/texlive && tar cf - \ + index.html */*.html */*.pdf */*.png \ + | (cd $imgdir/texlive-doc && tar xf -)) + # files from tlnet. cd /home/ftp/texlive/tlnet cp -pr install-tl *.bat tlpkg archive $imgdir cd $imgdir || exit 1 + # cleanups of files we didn't want after all. rm doc.html tlpkg/texlive.tlpdb.xz cmd="$mkisofs $common_mkisofs_options -o $iso ." echo "-- `date` with: $cmd" $cmd + chmod a+rw $iso rm -rf $imgdir |