diff options
author | Karl Berry <karl@freefriends.org> | 2006-08-25 23:53:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-08-25 23:53:52 +0000 |
commit | 59e3c45431220901f60c264e6adc53d40d183a37 (patch) | |
tree | 240343927615d9538f0625a430c1816960d278fe /Build/tools/ctan2tl | |
parent | a361b1af8b9a2fc37ec1c00f481df31ab4656d30 (diff) |
handle latex as a latex-tds package (base.zip);
earlier checked in (accidentally) similar changes
for other required latex packages.
git-svn-id: svn://tug.org/texlive/trunk@2029 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/ctan2tl')
-rwxr-xr-x | Build/tools/ctan2tl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Build/tools/ctan2tl b/Build/tools/ctan2tl index d8442cbbab6..6dc90f1e171 100755 --- a/Build/tools/ctan2tl +++ b/Build/tools/ctan2tl @@ -55,7 +55,7 @@ rm -rf $pkg # An important special case: the latex-tds project contains tds-ready # zip files for the base latex distribution. We want to use them. -latex_tds_pkglist="amslatex|babel|cyrillic|graphics|psnfss|latex-tds|tools" +latex_tds_pkglist="amslatex|babel|cyrillic|graphics|latex|psnfss|latex-tds|tools" if echo "$pkg" | egrep "^($latex_tds_pkglist)\$"; then mkdir $pkg @@ -63,10 +63,13 @@ if echo "$pkg" | egrep "^($latex_tds_pkglist)\$"; then # # another complication: the latex-tds package for our purposes is the # sources for the tools that do the process; that's in the zip file - # source.zip, in the latex-tds directory. Argh. + # source.zip, in the latex-tds directory. Similarly, the zip file for + # latex itself is named "base.zip". # if test $pkg = latex-tds; then zipname=source.zip + elif test $pkg = latex; then + zipname=base.zip else zipname=$pkg.zip fi |