summaryrefslogtreecommitdiff
path: root/Master/bin/universal-darwin/texconfig
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-05-20 09:05:22 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-05-20 09:05:22 +0000
commit7f2efe98c9e3dbda5ed2a9ede477f5b57899a963 (patch)
treec1189cd337c3f75d5e7a8158281508a5c38dca70 /Master/bin/universal-darwin/texconfig
parent53997712abd14a5b90f4b1469e7eab540b62da0a (diff)
Update tetex scripts (texconfig and texconfig-sys)
git-svn-id: svn://tug.org/texlive/trunk@22544 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/universal-darwin/texconfig')
-rwxr-xr-xMaster/bin/universal-darwin/texconfig14
1 files changed, 3 insertions, 11 deletions
diff --git a/Master/bin/universal-darwin/texconfig b/Master/bin/universal-darwin/texconfig
index f37b30b1283..c9cc73c8305 100755
--- a/Master/bin/universal-darwin/texconfig
+++ b/Master/bin/universal-darwin/texconfig
@@ -1150,19 +1150,11 @@ $formatsForHyphenFmt"
;;
init)
- if test -n "$texconfig_sys"; then # set by texconfig-sys
- fmtutil=fmtutil-sys
- updmap=updmap-sys
- else
- fmtutil=fmtutil
- updmap=updmap
- fi
-
case $2 in
"")
- if $fmtutil --all \
+ if fmtutil --all \
&& texlinks --multiplatform \
- && $updmap; then
+ && updmap; then
:
else
rc=1
@@ -1171,7 +1163,7 @@ $formatsForHyphenFmt"
*)
shift 1
for i in "$@"; do
- $fmtutil --byfmt "$i" || rc=1
+ fmtutil --byfmt "$i" || rc=1
done
;;
esac