diff options
author | Karl Berry <karl@freefriends.org> | 2009-06-11 23:26:38 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-06-11 23:26:38 +0000 |
commit | 19f6c22e1b0882320d04bb9f2fb1f2b9422aeac5 (patch) | |
tree | 29a3acdb8db734e9118fa938ca736d291eeb36c7 /Master/tlpkg/bin | |
parent | 5e3364c59042be87b704bd1987cb6a19069051a2 (diff) |
i386-cygwin binaries from Ken (+asy from Bowman)
git-svn-id: svn://tug.org/texlive/trunk@13717 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 6 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-install-pkg | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 1917e37f0d3..a5cb2acf5a3 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -104,6 +104,9 @@ for tlname in $tlnames; do hppa-hpux) default_bin_loc=$download_loc $download http://www.jtartlabs.com/test/hppa2.0-hp-hpux10.20.tar.gz -O $default_bin_loc;; + i386-cygwin) + default_bin_loc=$download_loc + $download http://www.math.cornell.edu/~kbrown/forkarl.tgz -O $default_bin_loc;; i386-freebsd) default_bin_loc=/home/manfred/tl2008.bin.tar.lzma;; i386-linux) @@ -166,7 +169,8 @@ for tlname in $tlnames; do ourdel=$tmpdir/2del ouradd=$tmpdir/2add - comm -23 $tmpdir/now $tmpdir/new >$ourdel # looking for deletions + # looking for deletions, but don't delete asy or xasy: + comm -23 $tmpdir/now $tmpdir/new | egrep -v '^x?asy$' >$ourdel comm -13 $tmpdir/now $tmpdir/new >$ouradd # looking for additions # get symlink list. diff --git a/Master/tlpkg/bin/tl-update-install-pkg b/Master/tlpkg/bin/tl-update-install-pkg index 53aff2f9044..2dbbb399c47 100755 --- a/Master/tlpkg/bin/tl-update-install-pkg +++ b/Master/tlpkg/bin/tl-update-install-pkg @@ -41,7 +41,7 @@ $opt_texlivedocs = 0; sub usage { print <<'EOF'; -Usage: tl-make-install-pkg [-h|--help] [-v|--verbose] -o|--outputdir=DIR +Usage: $0 [-h|--help] [-v|--verbose] -o|--outputdir=DIR Generate a .tar.gz file for Unix and a .zip file for all systems containing all the files needed to install TeX Live from the network. |