summaryrefslogtreecommitdiff
path: root/Build/source/texk/tetex/texconfig
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-07 11:45:38 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-07 11:45:38 +0000
commitf7313120e22d6aa6b949b94452216f43d3037099 (patch)
tree08b17db4a54cd506953613094e59f80d89eaef95 /Build/source/texk/tetex/texconfig
parentb193da52395b4e98368f28044ae107d33df6d9d0 (diff)
Install WIN32 wrapper binary for fontinst
Drop texconfig_sys shell variable in texconfig{,-sys} git-svn-id: svn://tug.org/texlive/trunk@20962 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/tetex/texconfig')
-rwxr-xr-xBuild/source/texk/tetex/texconfig14
1 files changed, 3 insertions, 11 deletions
diff --git a/Build/source/texk/tetex/texconfig b/Build/source/texk/tetex/texconfig
index f37b30b1283..c9cc73c8305 100755
--- a/Build/source/texk/tetex/texconfig
+++ b/Build/source/texk/tetex/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