diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 747221afc58..e9890c22bb0 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -91,18 +91,23 @@ for tlname in $tlnames; do # karl convenience default_bin_loc= + download_loc=${TMPDIR-$tmpdir}/tl.$tlname.tar.gz 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;; amd64-freebsd) - default_bin_loc=/tmp/tl.$tlname.tar.gz + default_bin_loc=$download_loc $download http://www.witticism.org/temp/x86_64-fbsd7.tar.bz2 -O $default_bin_loc;; i386-freebsd) default_bin_loc=/home/manfred/tl2008.bin.tgj;; i386-linux) default_bin_loc=/home/texlive/sarge/tmp/source/inst/bin/i686-pc-linux-gnu;; + i386-openbsd) + default_bin_loc=$download_loc;; + # too many subdirs, extract bin manually. + #http://students.dec.bmth.ac.uk/ebarrett/files/texlive2008_OpenBSD_bin_rc1.tgz -O $default_bin_loc;; + powerpc-darwin|i386-darwin) + default_bin_loc=$download_loc + $download http://www.uoregon.edu/~koch/$tlname.tar.gz -O $default_bin_loc;; esac fi |