summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorThomas Esser <unknown@unknown.unkown>2007-01-11 05:34:45 +0000
committerThomas Esser <unknown@unknown.unkown>2007-01-11 05:34:45 +0000
commitb25587deb2e535eba96d3d49cf14112a46db2438 (patch)
tree1924469d3ede9f7459b7570eee6686a07c7a6ac4 /Build
parent2af1207622a07d840e0cd1df2d738bfd00a8cbac (diff)
texconfig now issues fmtutil --refresh instead of --all to update pk resolution and papersize changes
git-svn-id: svn://tug.org/texlive/trunk@3334 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/texk/tetex/texconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/tetex/texconfig b/Build/source/texk/tetex/texconfig
index f5a85098e0d..3f02cebb312 100755
--- a/Build/source/texk/tetex/texconfig
+++ b/Build/source/texk/tetex/texconfig
@@ -1257,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
@@ -1276,7 +1276,7 @@ Valid PAPER settings:
wChanged=$fmgrConfigReplaceChanged
fmgrConfigReplace pdftexconfig.tex pdfpageheight '\pdfpageheight='"$h"
if $wChanged || $fmgrConfigReplaceChanged; then
- fmtutil --all
+ fmtutil --refresh
fi
;;
a4)
@@ -1285,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;;