diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-12 00:31:19 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-12 00:31:19 +0000 |
commit | b5abf3329a33156e1fd7516260ea038cecc28049 (patch) | |
tree | d3fa020e51a65f8f1693e0ce2c1626756ed8f34e | |
parent | 60238046d2cb744663592e32da7e8ae39a590970 (diff) |
cmap files (texmf/fonts/cmap) do not use .cmap, so remove SUFFIXES (from akira/vvv)
git-svn-id: svn://tug.org/texlive/trunk@8686 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/tex-file.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 33f0750316a..cf6c72c4635 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,9 @@ +2008-06-12 Karl Berry <karl@tug.org> + + * tex-file.c () <kpse_cmap_format>: cmap files (texmf/fonts/cmap) + do not have the .cmap suffix. (t1.cmap, et al., are TeX files, + not cmap files.) So remove the SUFFIXES definition. + 2008-05-31 Karl Berry <karl@tug.org> * elt-dirs.c (kpse_normalize_path): only output debug line if diff --git a/Build/source/texk/kpathsea/tex-file.c b/Build/source/texk/kpathsea/tex-file.c index ea381a8af7c..72e1e581146 100644 --- a/Build/source/texk/kpathsea/tex-file.c +++ b/Build/source/texk/kpathsea/tex-file.c @@ -674,7 +674,6 @@ kpse_init_format P1C(kpse_file_format_type, format) break; case kpse_cmap_format: INIT_FORMAT ("cmap files", DEFAULT_CMAPFONTS, CMAP_ENVS); - SUFFIXES (".cmap"); break; case kpse_sfd_format: INIT_FORMAT ("subfont definition files", DEFAULT_SFDFONTS, SFD_ENVS); |