configure.py : sort lists, remove superfluous line continuations.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39037 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Julien Rioux 2011-06-13 18:57:29 +00:00
parent 2dae004697
commit 3294e6429a

View File

@ -1098,8 +1098,8 @@ def checkLatexConfig(check_config, bool_docbook):
return None return None
# the following will generate textclass.lst.tmp, and packages.lst.tmp # the following will generate textclass.lst.tmp, and packages.lst.tmp
logger.info(msg + '\tauto') logger.info(msg + '\tauto')
removeFiles(['wrap_chkconfig.ltx', 'chkconfig.vars', \ removeFiles(['chkconfig.classes', 'chkconfig.vars', 'chklayouts.tex',
'chkconfig.classes', 'chklayouts.tex']) 'wrap_chkconfig.ltx'])
rmcopy = False rmcopy = False
if not os.path.isfile( 'chkconfig.ltx' ): if not os.path.isfile( 'chkconfig.ltx' ):
shutil.copyfile( os.path.join(srcdir, 'chkconfig.ltx'), 'chkconfig.ltx' ) shutil.copyfile( os.path.join(srcdir, 'chkconfig.ltx'), 'chkconfig.ltx' )
@ -1321,10 +1321,9 @@ def checkTeXAllowSpaces():
def removeTempFiles(): def removeTempFiles():
# Final clean-up # Final clean-up
if not lyx_keep_temps: if not lyx_keep_temps:
removeFiles(['chkconfig.vars', \ removeFiles(['chkconfig.vars', 'chklatex.ltx', 'chklatex.log',
'wrap_chkconfig.ltx', 'wrap_chkconfig.log', \
'chklayouts.tex', 'chkmodules.tex', 'missfont.log', 'chklayouts.tex', 'chkmodules.tex', 'missfont.log',
'chklatex.ltx', 'chklatex.log']) 'wrap_chkconfig.ltx', 'wrap_chkconfig.log'])
if __name__ == '__main__': if __name__ == '__main__':