mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-14 09:32:20 +00:00
lib/configure.py: fix checkTeXAllowSpaces, by Enrico
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14337 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
732d9156a0
commit
0853b8e044
@ -1,3 +1,6 @@
|
|||||||
|
2006-07-04 Enrico Forestieri <forenr@tlc.unipr.it>
|
||||||
|
* configure.py: fix checkTeXAllowSpaces
|
||||||
|
|
||||||
2006-07-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org> and Enrico Forestieri <forenr@tlc.unipr.it>
|
2006-07-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org> and Enrico Forestieri <forenr@tlc.unipr.it>
|
||||||
* configure.py: use \nonstopmode instead of -interaction=nonstopmode
|
* configure.py: use \nonstopmode instead of -interaction=nonstopmode
|
||||||
|
|
||||||
|
@ -636,8 +636,12 @@ def checkTeXAllowSpaces():
|
|||||||
tex_allows_spaces = 'false'
|
tex_allows_spaces = 'false'
|
||||||
if lyx_check_config:
|
if lyx_check_config:
|
||||||
print "Checking whether TeX allows spaces in file names... ",
|
print "Checking whether TeX allows spaces in file names... ",
|
||||||
writeToFile('a b.tex', r'\nonstopmode\message{working^^J}' )
|
writeToFile('a b.tex', r'\message{working^^J}' )
|
||||||
if ''.join(cmdOutput(LATEX + ' "a b"')).find('working') != -1:
|
if os.name == 'nt':
|
||||||
|
latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a b\"}" """)
|
||||||
|
else:
|
||||||
|
latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}' """)
|
||||||
|
if 'working' in latex_out:
|
||||||
print 'yes'
|
print 'yes'
|
||||||
tex_allows_spaces = 'true'
|
tex_allows_spaces = 'true'
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user