diff options
author | Karl Berry <karl@freefriends.org> | 2006-08-25 23:15:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-08-25 23:15:21 +0000 |
commit | e74725c006d5d12791df955e0d47441e419b2674 (patch) | |
tree | 2d2719b70fe61f49ba99926894b4e28e8750f191 /Build/tools/Tpm.pm | |
parent | 599ef3504c65bbbfe2d3a0d3cf9312934c25bfe6 (diff) |
handle mathdesign, etc.
git-svn-id: svn://tug.org/texlive/trunk@2020 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/Tpm.pm')
-rw-r--r-- | Build/tools/Tpm.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Build/tools/Tpm.pm b/Build/tools/Tpm.pm index 774d0b1a162..b02d19183b5 100644 --- a/Build/tools/Tpm.pm +++ b/Build/tools/Tpm.pm @@ -137,7 +137,7 @@ my @vendors = ( "bakoma", "bh", "bitstrea", "bluesky", "cg", ,"cns", "cspsfonts-adobe", "hoekwater", "ibm", "itc", "jknappen", "jmn", "korean", "lh", - "misc", "monotype", "paragrap", + "mathdesign", "misc", "monotype", "paragrap", "public", "uhc", "urw", "urw35vf", "vntex", "wadalab", "yandy"); my @fontmodes = ( @@ -1345,6 +1345,12 @@ sub buildPatternsPackage { ( $texmf . "/source/latex/amsfonts/*" ); } + # Exception for lh: also have source/latex/lh. + push @source_patterns, ( $texmf . "/source/latex/$name/*" ); # lh + + # Exception for mathdesign -- doc is in doc/latex instead of doc/fonts. + push @doc_patterns, ( $texmf . "/doc/latex/$name/*" ); # mathdesign + # Exception for vntex -- doc is in doc/generic instead of doc/fonts. push @doc_patterns, ( $texmf . "/doc/generic/$name/*" ); # vntex |