X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fconfigure.py;h=7d9c3b91c812c6cf54136e0bb09d5c89affb31a3;hb=1a4b549a534c70cc8c336b0baeeb523d07c9cb58;hp=11be2be4f415e5cd8594e427bb0e9aea614a6b26;hpb=bfe2d2c027bf6a95af9b276c46e12c692af8eda7;p=lyx.git diff --git a/lib/configure.py b/lib/configure.py index 11be2be4f4..7d9c3b91c8 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -189,15 +189,15 @@ def checkDTLtools(): if ((os.name == 'nt' or sys.platform == 'cygwin') and checkProg('DVI to DTL converter', ['dv2dt']) != ['', ''] and checkProg('DTL to DVI converter', ['dt2dv']) != ['', '']): - dtl_tools = 'true' + dtl_tools = True else: - dtl_tools = 'false' + dtl_tools = False return dtl_tools def checkLatex(dtl_tools): ''' Check latex, return lyx_check_config ''' - if (dtl_tools == 'true'): + if dtl_tools: # Windows only: DraftDVI converter_entry = r'''\converter latex dvi2 "%%" "latex" \converter dvi2 dvi "python -tt $$s/scripts/clean_dvi.py $$i $$o" ""''' @@ -287,7 +287,7 @@ def checkFormatEntries(dtl_tools): # checkViewer('a DVI previewer', ['xdvi', 'kdvi'], rc_entry = [r'\Format dvi dvi DVI D "%%" "" "document,vector"']) - if (dtl_tools == 'true'): + if dtl_tools: # Windows only: DraftDVI addToRC(r'\Format dvi2 dvi DraftDVI "" "" "document,vector"') # @@ -416,7 +416,7 @@ def checkConverterEntries(): 'latex2html -no_subdir -split 0 -show_section_numbers $$i', 'hevea -s $$i'], rc_entry = [ r'\converter latex html "%%" "originaldir,needaux"' ]) # - path, lilypond = checkProg('a LilyPond -> ESP/PDF/PNG converter', ['lilypond']) + path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond']) if (lilypond != ''): version_string = cmdOutput("lilypond --version") match = re.match('GNU LilyPond (\S+)', version_string)