configure.py: add nonstopmode to cygwin latex check

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14289 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2006-07-02 14:12:48 +00:00
parent f66fd91896
commit fd9ca909c6
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-07-02 Bo Peng <ben.bob@gmail.com>
* configure.py: add nonstopmode to cygwin latex check
2006-06-27 Enrico Forestieri <forenr@tlc.unipr.it> 2006-06-27 Enrico Forestieri <forenr@tlc.unipr.it>
* configure.py: rename checkCygwinPath -> checkTeXPaths, * configure.py: rename checkCygwinPath -> checkTeXPaths,

View File

@ -95,7 +95,7 @@ def checkTeXPaths():
wtmpfname = cmdOutput('cygpath -m ' + wtmpfname) wtmpfname = cmdOutput('cygpath -m ' + wtmpfname)
os.write(wfd, r'\input{' + inpname + '}' ) os.write(wfd, r'\input{' + inpname + '}' )
os.close(wfd) os.close(wfd)
if cmdOutput('latex ' + wtmpfname).find('Error') != -1: if cmdOutput('latex -interaction=nonstopmode %s' % wtmpfname).find('Error') != -1:
print "configure: TeX engine needs posix-style paths in latex files" print "configure: TeX engine needs posix-style paths in latex files"
windows_style_tex_paths = 'false' windows_style_tex_paths = 'false'
else: else: