From fd9ca909c631e59e8189baa666c08be26b22d038 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Sun, 2 Jul 2006 14:12:48 +0000 Subject: [PATCH] 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 --- lib/ChangeLog | 3 +++ lib/configure.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index 16be599d2e..60a9d385e7 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,6 @@ +2006-07-02 Bo Peng + * configure.py: add nonstopmode to cygwin latex check + 2006-06-27 Enrico Forestieri * configure.py: rename checkCygwinPath -> checkTeXPaths, diff --git a/lib/configure.py b/lib/configure.py index 4a37deee67..b7aa93dd2d 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -95,7 +95,7 @@ def checkTeXPaths(): wtmpfname = cmdOutput('cygpath -m ' + wtmpfname) os.write(wfd, r'\input{' + inpname + '}' ) 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" windows_style_tex_paths = 'false' else: