summaryrefslogtreecommitdiff
path: root/Master/bin/i386-solaris/texconfig
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/i386-solaris/texconfig')
-rwxr-xr-xMaster/bin/i386-solaris/texconfig15
1 files changed, 9 insertions, 6 deletions
diff --git a/Master/bin/i386-solaris/texconfig b/Master/bin/i386-solaris/texconfig
index 976f4590ab5..3f02cebb312 100755
--- a/Master/bin/i386-solaris/texconfig
+++ b/Master/bin/i386-solaris/texconfig
@@ -24,7 +24,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
progname=texconfig
# the version string
-version=1118467711 # seconds since `00:00:00 1970-01-01 UTC'
+version=1168206389 # seconds since `00:00:00 1970-01-01 UTC'
# date '+%s' (with GNU date)
envVars="
@@ -593,7 +593,7 @@ tcBatch()
$progname font rw
$progname formats
$progname hyphen FORMAT
- $progname init [format]
+ $progname init [formats]
$progname mode MODE
$progname paper PAPER
$progname pdftex [options]
@@ -1149,7 +1149,10 @@ $formatsForHyphenFmt"
updmap || rc=1
;;
*)
- fmtutil --byfmt "$2" || rc=1
+ shift 1
+ for i in "$@"; do
+ fmtutil --byfmt "$i" || rc=1
+ done
;;
esac
;;
@@ -1254,7 +1257,7 @@ Valid PAPER settings:
set x `getRes "$tcBatchPdftexMode"`; shift
fmgrConfigReplace pdftexconfig.tex 'pdfpkresolution' "\\pdfpkresolution=$1"
if $fmgrConfigReplaceChanged; then
- fmtutil --all
+ fmtutil --refresh
fi
else
echo "$progname: unknown MODE \`$tcBatchPdftexMode' given as argument for \`$progname pdftex mode'" >&2
@@ -1273,7 +1276,7 @@ Valid PAPER settings:
wChanged=$fmgrConfigReplaceChanged
fmgrConfigReplace pdftexconfig.tex pdfpageheight '\pdfpageheight='"$h"
if $wChanged || $fmgrConfigReplaceChanged; then
- fmtutil --all
+ fmtutil --refresh
fi
;;
a4)
@@ -1282,7 +1285,7 @@ Valid PAPER settings:
wChanged=$fmgrConfigReplaceChanged
fmgrConfigReplace pdftexconfig.tex pdfpageheight '\pdfpageheight='"$h"
if $wChanged || $fmgrConfigReplaceChanged; then
- fmtutil --all
+ fmtutil --refresh
fi
;;
"") echo "$help" >&2; rc=1;;