diff options
author | Norbert Preining <preining@logic.at> | 2016-06-23 03:12:14 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-06-23 03:12:14 +0000 |
commit | a8723541054f8bab742b0da1688048f8617844ec (patch) | |
tree | 4990cc1b8568f11174f74688dc76264037f43561 /Master/texmf-dist/scripts | |
parent | e63233785c75a18f4590e35ea3709ac08912725d (diff) |
fmtutil: default to strict=1
git-svn-id: svn://tug.org/texlive/trunk@41529 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/fmtutil.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl index c09d886f2bd..b163cda5774 100755 --- a/Master/texmf-dist/scripts/texlive/fmtutil.pl +++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl @@ -91,7 +91,9 @@ if (win32()) { our $texmfconfig = $TEXMFCONFIG; our $texmfvar = $TEXMFVAR; our $alldata; -our %opts = ( quiet => 0 ); +# command line options with defaults +# 20160623 - switch to turn on strict mode +our %opts = ( quiet => 0 , strict => 1 ); # make a list of all the commands (as opposed to options), so we can # reasonably check for multiple commands being (erroneously) given. @@ -117,7 +119,7 @@ our @cmdline_options = ( # in same order as help message "no-error-if-no-format", "nohash", "recorder", - "strict", + "strict!", "quiet|silent|q", "catcfg", "dolinks", @@ -1280,9 +1282,9 @@ Options: --no-error-if-no-engine=ENGINE1,ENGINE2,... exit successfully even if a required engine is missing, if it is included in the list. + --no-strict don't exit with bad status if a format fails to build --nohash don't update ls-R files --recorder pass the -recorder option and save .fls files - --strict exit with bad status if a format fails to build --quiet be silent --catcfg (does nothing, exists for compatibility) --dolinks (does nothing, exists for compatibility) |