diff options
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index 0825b23a95e..17a1716efc7 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -257,6 +257,8 @@ sub make_tlpobj # which add autopatterns as if we are doing single packages # toplevel1 toplevel2 toplevel3 push @autoaddpat, split(' ', $1); + } elsif ($p =~ m/^!\+(.*)$/) { + push @allnegpats, $1; } elsif ($p =~ m/^\+!(.*)$/) { push @allnegpats, $1; } elsif ($p =~ m/^\+(.*)$/) { |