diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-04 17:48:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-04 17:48:12 +0000 |
commit | 21ed60c2ddcc68f5731606c0b2d202780ba13c80 (patch) | |
tree | 6155cd743b3be97a6491976379914aa04af8e869 /Master/tlpkg/bin/tl-update-bindir | |
parent | 581de0dcf55ac892301fb41bf2c7c4c2475d91f4 (diff) |
i386-darwin binaries for tl08 from koch
git-svn-id: svn://tug.org/texlive/trunk@8559 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-update-bindir')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index cc8fb5ec70d..8fa253d38fe 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -44,6 +44,7 @@ Report bugs to tlbuild@tug.org." # parse options. bin_loc= +download=wget msg=echo tlnames= while test $# -gt 0; do @@ -55,6 +56,8 @@ while test $# -gt 0; do --master) shift; Master=$1;; --bin-loc) shift; bin_loc=$1;; + --no-download|-N) download=true;; # secret option for karl + --*) echo "$0: unrecognized option \`$1'; try --help if you need it." >&2 exit 1;; @@ -90,6 +93,9 @@ for tlname in $tlnames; do default_bin_loc= if test x"$USER" = xkarl; then case $tlname in + powerpc-darwin|i386-darwin) + default_bin_loc=/tmp/tl.$tlname.tar.gz + $download http://www.uoregon.edu/~koch/$tlname.tar.gz -O $default_bin_loc;; i386-freebsd) default_bin_loc=/home/manfred/tl2008.bin.tgj;; i386-linux) |