diff options
author | Karl Berry <karl@freefriends.org> | 2018-04-10 22:53:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-04-10 22:53:42 +0000 |
commit | 7a6f8501906974aee5a5a25461ca8f27efc8cf57 (patch) | |
tree | 08d82905d4728d88f3a30beb5f09339de39a53e8 /Master | |
parent | fcec1b8ca81f163e3cbcf9b1fcd63aaee48683a6 (diff) |
don't remake wb files if $chicken
git-svn-id: svn://tug.org/texlive/trunk@47438 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-auto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index bb5d08420e0..8e8e8008e63 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -4,6 +4,7 @@ # # Deal with files that are automatically updated in one way or another. +LC_ALL=C; export LC_ALL PATH=/usr/local/gnu/bin:/usr/local/bin:$PATH; export PATH umask 0 @@ -200,7 +201,7 @@ for script in texmf-dist/scripts/texlive/tlmgr.pl install-tl; do # can do it unconditionally. # pod2html="$chicken pod2html --cachedir=$TMPDIR" - $pod2html $script >$webdir/$basescript.html + test -z "$chicken" && $pod2html $script >$webdir/$basescript.html fi done |