From: Uwe Stöhr Date: Wed, 5 Dec 2007 22:26:48 +0000 (+0000) Subject: configure.py: fix detection of LaTeX (bug 4397) X-Git-Tag: 1.6.10~7040 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=93c7c89beb7727e2c03eec18644df050b714fd0f;p=features.git configure.py: fix detection of LaTeX (bug 4397) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21982 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/configure.py b/lib/configure.py index a7d0fd550d..62f32751e6 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -198,7 +198,7 @@ def checkDTLtools(): def checkLatex(dtl_tools): ''' Check latex, return lyx_check_config ''' - path, LATEX = checkProg('a Latex2e program', ['platex $$i', 'latex $$i', 'latex2e $$i']) + path, LATEX = checkProg('a Latex2e program', ['latex $$i', 'platex $$i', 'latex2e $$i']) path, PPLATEX = checkProg('a DVI postprocessing program', ['pplatex $$i']) # use LATEX to convert from latex to dvi if PPLATEX is not available if PPLATEX == '':