texlive[45704] Master/tlpkg/bin/check-fmttriggers: handle cases where

commits+karl at tug.org commits+karl at tug.org
Mon Nov 6 01:18:20 CET 2017


Revision: 45704
          http://tug.org/svn/texlive?view=revision&revision=45704
Author:   karl
Date:     2017-11-06 01:18:20 +0100 (Mon, 06 Nov 2017)
Log Message:
-----------
handle cases where no fmttriggers is expected now
(mf, context)

Modified Paths:
--------------
    trunk/Master/tlpkg/bin/check-fmttriggers

Modified: trunk/Master/tlpkg/bin/check-fmttriggers
===================================================================
--- trunk/Master/tlpkg/bin/check-fmttriggers	2017-11-06 00:03:34 UTC (rev 45703)
+++ trunk/Master/tlpkg/bin/check-fmttriggers	2017-11-06 00:18:20 UTC (rev 45704)
@@ -331,10 +331,15 @@
       delete $fmttriggers->{$ef};
 
     } else {
-      # not in tlpdb at all; output needed fmttriggers directive.
-      tlwarn ("$prg: no fmttriggers in tlpdb: $ef\n"
-              . "  fmttriggers=" . join (",", @recorded_pkgs) . "\n");
-      $bad_p = 1;
+      # not in tlpdb at all; in a few cases, that is expected.
+      # Otherwise, complain and output needed fmttriggers directive.
+      if ($ef =~ /^(mf-nowin\.mf|(pdf|xe)tex\.cont-en)$/) {
+        delete $fmttriggers->{$ef}; # ok
+      } else {
+        tlwarn ("$prg: no fmttriggers in tlpdb: $ef\n"
+                . "  fmttriggers=" . join (",", @recorded_pkgs) . "\n")
+        $bad_p = 1;
+      }
     }
   }
   



More information about the tex-live-commits mailing list