Author: forenr
Date: Wed Jun 1 17:21:16 2011
New Revision: 38918
URL: http://www.lyx.org/trac/changeset/38918
Log:
Apparently, this extra check is not necessary as the first one works
whatever the TeX engine.
Modified:
lyx-devel/trunk/lib/configure.py
Modified: lyx-devel/trunk/lib/configure.py
==============================================================================
--- lyx-devel/trunk/lib/configure.py Wed Jun 1 15:19:52 2011 (r38917)
+++ lyx-devel/trunk/lib/configure.py Wed Jun 1 17:21:16 2011 (r38918)
@@ -1305,8 +1305,6 @@
if LATEX != '':
if os.name == 'nt' or sys.platform == 'cygwin':
latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a
b\"}" """)
- if not 'working' in latex_out:
- latex_out = cmdOutput(LATEX + r' "\nonstopmode\input{a
b}"')
else:
latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}'
""")
else: