diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-13 22:31:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-13 22:31:21 +0000 |
commit | b6bc717f5c35953f01c67b4ea627d535150265ca (patch) | |
tree | b82969a1de25fc44c70a479d6a0e9ff97d7e0e27 /Master/tlpkg | |
parent | 3dbcd66ccc7c8259934eb252e7a93a0f558eb466 (diff) |
TL17 pretest initial i386-linux and x86_64-linux binaries
git-svn-id: svn://tug.org/texlive/trunk@43784 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 12be1fa17d3..602bf97f7c9 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -138,12 +138,7 @@ for tlname in $tlnames; do grab="$download -O $download_loc" $grab ftp://ftp.cea.fr/incoming/y2k01/braslau/i386-unknown-kfreebsd10.0-gnu.tar.xz;; i386-linux) - default_bin_loc=/home/texlive/karl/Build/source/inst/bin/i686-pc-linux-gnu - # to get gs support to not crash, we must compile dvisvgm differently - # than the rest; users won't accept anything less. - special_dvisvgm=/home/texlive/svgm/Work/texk/dvisvgm/dvisvgm - cp $special_dvisvgm $default_bin_loc/dvisvgm - strip $default_bin_loc/dvisvgm;; + default_bin_loc=/tmp/lin32.tgz;; i386-netbsd) download_loc=$tmpdir/tl.$tlname.tar.xz default_bin_loc=$download_loc @@ -185,8 +180,7 @@ for tlname in $tlnames; do #$grab http://pages.uoregon.edu/koch/x86_64-darwin.tar.xz;; default_bin_loc=/home/koch/x86_64-darwin.tar.xz;; x86_64-linux) - default_bin_loc=$download_loc - $grab ftp://ftpth.mppmu.mpg.de/pub/peb/TLtests/Build-x86_64-linux.tar.bz2;; + default_bin_loc=/home/texlive/karl/Build/source/inst/bin/x86_64-pc-linux-gnu;; x86_64-solaris) download_loc=$tmpdir/tl.$tlname.tar.xz default_bin_loc=$download_loc @@ -238,10 +232,11 @@ for tlname in $tlnames; do ourdel=$tmpdir/2del ouradd=$tmpdir/2add - # looking for deletions, but don't delete (x)asy, biber, or xindy. + # looking for deletions, but don't delete (x)asy, biber, dvisvgm, xindy. comm -23 $tmpdir/now $tmpdir/new \ | egrep -v '^(x?asy(\.exe)?|freeglut\.dll)$' \ | egrep -v '^biber(\.exe)?$' \ + | egrep -v '^dvisvgm$' \ | egrep -v 'xindy' \ >$ourdel # intentionally anything matching xindy comm -13 $tmpdir/now $tmpdir/new >$ouradd # looking for additions |