diff options
author | Karl Berry <karl@freefriends.org> | 2016-02-17 21:47:29 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-02-17 21:47:29 +0000 |
commit | cc98b7024a5a1b004e236640a48c1637bb44da29 (patch) | |
tree | 54c77b35e77b23f764b7d30e8958f716201661a3 /Master/tlpkg/bin | |
parent | 3e1886523a125f33ae18ba71a6d2eed5de2e293e (diff) |
sync
git-svn-id: svn://tug.org/texlive/trunk@39758 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/check-fmttriggers | 3 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-asy | 21 |
2 files changed, 16 insertions, 8 deletions
diff --git a/Master/tlpkg/bin/check-fmttriggers b/Master/tlpkg/bin/check-fmttriggers index 50fffe8b225..f20711a0ecc 100755 --- a/Master/tlpkg/bin/check-fmttriggers +++ b/Master/tlpkg/bin/check-fmttriggers @@ -50,6 +50,9 @@ exit (&main()); sub main { + # no interference from TEXMFHOME, please. + $ENV{'TEXMFHOME'} = "/nonesuch"; + if ($opt_rerecord) { # remake recorder files? my $status = &run_fmtutil ($opt_fmtdir); return $status if $status; diff --git a/Master/tlpkg/bin/tl-update-asy b/Master/tlpkg/bin/tl-update-asy index 64adb4bcb92..ab483772ca1 100755 --- a/Master/tlpkg/bin/tl-update-asy +++ b/Master/tlpkg/bin/tl-update-asy @@ -25,11 +25,11 @@ if false && $update_sources_from_ctan; then \cp -arf /home/ftp/tex-archive/graphics/asymptote/ . cd asymptote - # get list of new files to add: + # show list of new files to add: svn status | sed -n 's/^\?//p' | fgrep -v binaries svn add `!!` - # get list of files to remove: + # show list of files to remove: diff -qr . /home/ftp/tex-archive/graphics/asymptote/ \ | egrep -v ' differ' | egrep -v '\.svn' svn rm ... @@ -51,10 +51,10 @@ elif test "x$1" = x--build; then set -x cd /home/texlive/karl/Build/source/utils/asymptote - test -r dot.svn && mv dot.svn .svn + test ! -r dot.git || mv dot.git .git /usr/local/bin/svn update /usr/local/bin/svn revert asy-keywords.el - test -r .svn && mv .svn dot.svn + test ! -r .git || mv .git dot.git if test -f Makefile; then make clean $svn revert doc/asy-latex.pdf @@ -62,12 +62,17 @@ elif test "x$1" = x--build; then rm -rf autom4te.cache fi rm -rf /tmp/ainst - ./configure --with-latex=/tmp/ainst/latex --with-context=/tmp/ainst/context \ - --enable-texlive-build --prefix=/tmp/ainst #CFLAGS=-g + # these configure options represent what is intended to be supported + # in the i386-linux build. on centos5, need yum packages + # freeglut freeglut-devel libX11-devel mesa-libGLU-devel + ./configure --prefix=/tmp/ainst \ + --with-latex=/tmp/ainst/latex --with-context=/tmp/ainst/context \ + --enable-fftw --enable-gl --disable-gsl \ + --enable-texlive-build #CFLAGS=-g nice make - #nice make check + nice make check make install-prebuilt - test -r dot.svn && mv dot.svn .svn + test ! -r .git || mv dot.git .git exit 0 |