diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-29 18:35:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-29 18:35:53 +0000 |
commit | d5bcbad5941d8b4605925ab99cf5a04a65dd42ca (patch) | |
tree | ffbe5b719e39143533f2e2433ae4d6d6c1c1e25a | |
parent | 921c8ef35be1c3aa0e5be5679c5e5d843c79755b (diff) |
doc
git-svn-id: svn://tug.org/texlive/trunk@7225 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf/fmtutil/fmtutil-hdr.cnf | 12 | ||||
-rw-r--r-- | Master/texmf/tex/generic/config/language.us | 1 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 4 |
3 files changed, 8 insertions, 9 deletions
diff --git a/Master/texmf/fmtutil/fmtutil-hdr.cnf b/Master/texmf/fmtutil/fmtutil-hdr.cnf index e4d17539d9f..237951234b8 100644 --- a/Master/texmf/fmtutil/fmtutil-hdr.cnf +++ b/Master/texmf/fmtutil/fmtutil-hdr.cnf @@ -1,15 +1,13 @@ +# $Id$ # Originally written by Thomas Esser, 1998. Public domain. -# fmtutil.cnf: configuration file for fmtutil. -# -# This TeX Live fmtutil.cnf is not kept exactly in sync with the teTeX -# fmtutil.cnf (and not maintained by te), since the two distributions -# need different settings, although they are nearly the same. The TL -# version has a few extra entries at the end, mainly. -# Customize this file to your needs, e.g. +# You can customize this file to your needs, e.g. # - remove or uncomment formats that you don't need # - add your own formats # - change default engine / flags for standard formats +# but as of TeX Live 2008, the final fmtutil.cnf is generated by +# texconfig generate fmtutil. You can use the -local option to +# generate-fmtutil to make local additions. # Some notes: # 1) tex and amstex just load hyphen.tex. No customization. diff --git a/Master/texmf/tex/generic/config/language.us b/Master/texmf/tex/generic/config/language.us index 6832cb83738..e5a08314bde 100644 --- a/Master/texmf/tex/generic/config/language.us +++ b/Master/texmf/tex/generic/config/language.us @@ -1,3 +1,4 @@ +% $Id$ % language.us (and the start of language.dat) % - initial hyphenation patterns. % Created long ago by Sebastian Rahtz and others. Public domain. diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index 19df28c30e6..a584754b26e 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -779,7 +779,7 @@ sub fmtutil_cnf_lines { my %fmtcnffiles; foreach my $p ($self->list_packages) { my $obj = $self->get_package ($p); - die "No TeX Live package named $p, strange.\n" if ! $obj; + die "No TeX Live package named $p, strange" if ! $obj; foreach my $e ($obj->executes) { if ($e =~ m/BuildFormat (.*)$/) { $fmtcnffiles{$1} = 1; @@ -814,7 +814,7 @@ sub updmap_cfg_lines { my %maps; foreach my $p ($self->list_packages) { my $obj = $self->get_package ($p); - die "No TeX Live package named $p, strange.\n" if ! $obj; + die "No TeX Live package named $p, strange" if ! $obj; foreach my $e ($obj->executes) { if ($e =~ m/addMap (.*)$/) { $maps{$1} = 1; |