diff options
author | Karl Berry <karl@freefriends.org> | 2009-06-15 00:13:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-06-15 00:13:54 +0000 |
commit | babc0c87f4360c9492cf1caa21aeae4e2274f184 (patch) | |
tree | d9bc86bc2c2470d7ae4a0dece84923b23fb252dd /Build | |
parent | 279fe081228ca79a7309438b3d0be99e29f51aa0 (diff) |
build jadetex using latex.ltx instead of &latex, to appease debian #427562
git-svn-id: svn://tug.org/texlive/trunk@13746 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 9 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/texmf.cnf | 6 |
2 files changed, 13 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index d6d624b1836..3da62f00833 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,12 @@ +2009-06-15 Karl Berry <karl@tug.org> + + * texmf.cnf (TEXINPUTS.jadetex,pdfjadetex): search latex, not plain. + Thus we find the latex fonttext.cfg before cslatex's, and thus + we can build the format using latex.ltx, and thus + we can avoid & in fmtutil.cnf, and thus + we can avoid painful infinite loops on failure, or something. + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=427562 + 2009-06-10 Karl Berry <karl@tug.org> * ac/web2c.ac (mktexfmt): default to yes. diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf index 31a06f3fba9..25c6953aaa6 100644 --- a/Build/source/texk/kpathsea/texmf.cnf +++ b/Build/source/texk/kpathsea/texmf.cnf @@ -174,7 +174,6 @@ TEXINPUTS.amstex = .;$TEXMF/tex/{amstex,plain,generic,}// TEXINPUTS.csplain = .;$TEXMF/tex/{csplain,plain,generic,}// TEXINPUTS.eplain = .;$TEXMF/tex/{eplain,plain,generic,}// TEXINPUTS.ftex = .;$TEXMF/tex/{formate,plain,generic,}// -TEXINPUTS.jadetex = .;$TEXMF/tex/{jadetex,plain,generic,}// TEXINPUTS.mex = .;$TEXMF/tex/{mex,plain,generic,}// TEXINPUTS.texinfo = .;$TEXMF/tex/{texinfo,plain,generic,}// @@ -200,7 +199,6 @@ TEXINPUTS.etex = .;$TEXMF/tex/{plain,generic,}// % pdfTeX. TEXINPUTS.pdfcslatex = .;$TEXMF/tex/{cslatex,csplain,latex,generic,}// TEXINPUTS.pdfcsplain = .;$TEXMF/tex/{csplain,plain,generic,}// -TEXINPUTS.pdfjadetex = .;$TEXMF/tex/{jadetex,plain,generic,}// TEXINPUTS.pdflatex = .;$TEXMF/tex/{latex,generic,}// TEXINPUTS.pdfmex = .;$TEXMF/tex/{mex,plain,generic,}// TEXINPUTS.utf8mex = .;$TEXMF/tex/{mex,plain,generic,}// @@ -239,6 +237,10 @@ TEXINPUTS.omega = .;$TEXMF/tex/{plain,generic,}// % ConTeXt. TEXINPUTS.context = .;$TEXMF/tex/{context,plain,generic,}// +% jadetex +TEXINPUTS.jadetex = .;$TEXMF/tex/{jadetex,latex,generic,}// +TEXINPUTS.pdfjadetex = .;$TEXMF/tex/{jadetex,latex,generic,}// + % XMLTeX. TEXINPUTS.xmltex = .;$TEXMF/tex/{xmltex,latex,generic,}// TEXINPUTS.pdfxmltex = .;$TEXMF/tex/{xmltex,latex,generic,}// |