summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-xMaster/tlpkg/bin/tl-update-bindir6
-rwxr-xr-xMaster/tlpkg/bin/tl-update-install-pkg2
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.