summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-04-10 22:53:42 +0000
committerKarl Berry <karl@freefriends.org>2018-04-10 22:53:42 +0000
commit7a6f8501906974aee5a5a25461ca8f27efc8cf57 (patch)
tree08d82905d4728d88f3a30beb5f09339de39a53e8
parentfcec1b8ca81f163e3cbcf9b1fcd63aaee48683a6 (diff)
don't remake wb files if $chicken
git-svn-id: svn://tug.org/texlive/trunk@47438 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/tlpkg/bin/tl-update-auto3
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