diff options
author | Norbert Preining <preining@logic.at> | 2010-07-04 12:23:28 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-07-04 12:23:28 +0000 |
commit | 7921464d4efd36adf09b6765859d8bea9b9e4932 (patch) | |
tree | b3a5922647b316b4e48a784396050a3907fcdd7d /Master/bin/powerpc-aix/fmtutil | |
parent | 2ab9ce799cc571ca03b80c3a2afc23d6cf26e0ee (diff) |
update fmtutil in bin/ARCH
git-svn-id: svn://tug.org/texlive/trunk@19223 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/powerpc-aix/fmtutil')
-rwxr-xr-x | Master/bin/powerpc-aix/fmtutil | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/Master/bin/powerpc-aix/fmtutil b/Master/bin/powerpc-aix/fmtutil index 2aa8c3a0643..d822e474cd9 100755 --- a/Master/bin/powerpc-aix/fmtutil +++ b/Master/bin/powerpc-aix/fmtutil @@ -59,7 +59,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' progname=fmtutil argv0=$0 -version='$Id: fmtutil 18913 2010-06-12 16:17:53Z karl $' +version='$Id: fmtutil 19222 2010-07-04 12:21:30Z preining $' cnf=fmtutil.cnf # name of the config file export PATH @@ -104,6 +104,8 @@ Optional behavior: --cnffile FILE read FILE instead of fmtutil.cnf. --fmtdir DIRECTORY --no-engine-subdir don't use engine-specific subdir of the fmtdir + --no-error-if-no-format do not exit with error code on some format + related errors --quiet be silent --test (not implemented, just for compatibility) --dolinks (not implemented, just for compatibility) @@ -126,8 +128,10 @@ Valid commands for fmtutil: --version show version info --help show this message -The config file is named fmtutil.cnf, and +The default config file is named fmtutil.cnf, and running kpsewhich fmtutil.cnf should show the active file. +The command kpsewhich --engine=/ --all foo.fmt should show the +locations of any and all foo.fmt files. For more information about fmt generation in TeX Live, try tlmgr --help or see http://tug.org/texlive/doc/tlmgr.html. @@ -245,6 +249,17 @@ abort() } ############################################################################### +# maybe_abort(errmsg) +# print `errmsg' to stderr and +# unless noAbortFlag is set exit with error code 1 +############################################################################### +maybe_abort() +{ + echo "$progname: $1." >&2 + $noAbortFlag || cleanup 1 +} + +############################################################################### # verboseMsg(msg) # print `msg' to stderr is $verbose is true ############################################################################### @@ -407,6 +422,7 @@ main() cfgmaint= tmpdir=${TMPDIR-${TEMP-${TMP-/tmp}}}/$progname.$$ verboseFlag=true + noAbortFlag=false # mktexfmtMode: if called as mktexfmt, set to true. Will echo the # first generated filename after successful generation to stdout then @@ -483,17 +499,20 @@ main() cmd=catcfg;; --listcfg) cmd=listcfg;; + --no-error-if-no-format) + noAbortFlag=true;; --quiet|-q|--silent) verboseFlag=false;; --test|--dolinks|--force) ;; "") break;; - *) abort "unknown option \`$1'. Try $progname --help for help";; + *) abort "unknown option \`$1'; try $progname --help if you need it";; esac do test $# -gt 0 && shift; done case "$cmd" in - help|"") help;; + "") abort "missing command; try $progname --help if you need it";; + help) help;; version) version;; esac @@ -919,7 +938,7 @@ recreate_by_hyphenfile() recreate_loop # Now check if there was at least one match: - getmatch || abort "no format depends on hyphen file \`$hyphenfile'" + getmatch || maybe_abort "no format depends on hyphen file \`$hyphenfile'" } ############################################################################### @@ -938,7 +957,7 @@ recreate_by_engine() recreate_loop # Now check if there was at least one match: - getmatch || abort "no format depends on engine \`$enginename'" + getmatch || maybe_abort "no format depends on engine \`$enginename'" } |