mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
* configure.py: reinstantiate part of removeExtraFiles that was
removed by mistake. Add removal of chklatex.{ltx,log}. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@13792 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b3b0afb77e
commit
5e32e533ea
@ -1,5 +1,11 @@
|
||||
2006-05-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* configure.py: reinstantiate part of removeExtraFiles that was
|
||||
removed by mistake. Add removal of chklatex.{ltx,log}.
|
||||
|
||||
2006-04-29 Enrico Forestieri <forenr@tlc.unipr.it>
|
||||
* configure.py: fix a cygwin compatibility problem with configure.py
|
||||
|
||||
* configure.py: fix a cygwin compatibility problem
|
||||
|
||||
2006-04-27 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
|
@ -624,6 +624,15 @@ def checkTeXAllowSpaces():
|
||||
removeFiles( [ 'a b.tex', 'a b.log', 'texput.log' ])
|
||||
|
||||
|
||||
def removeTempFiles():
|
||||
# Final clean-up
|
||||
if not lyx_keep_temps:
|
||||
removeFiles(['chkconfig.sed', 'chkconfig.vars', \
|
||||
'wrap_chkconfig.ltx', 'wrap_chkconfig.log', \
|
||||
'chklayouts.tex', 'missfont.log',
|
||||
'chklatex.ltx', 'chklatex.log'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
lyx_check_config = True
|
||||
outfile = 'lyxrc.defaults'
|
||||
@ -680,3 +689,4 @@ Options:
|
||||
# --without-latex-config can disable lyx_check_config
|
||||
checkLatexConfig( lyx_check_config and LATEX != '', bool_docbook, bool_linuxdoc)
|
||||
createLaTeXConfig()
|
||||
removeTempFiles()
|
||||
|
Loading…
Reference in New Issue
Block a user