]> git.lyx.org Git - features.git/commitdiff
* configure.py: reinstantiate part of removeExtraFiles that was
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 3 May 2006 13:32:42 +0000 (13:32 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 3 May 2006 13:32:42 +0000 (13:32 +0000)
removed by mistake. Add removal of chklatex.{ltx,log}.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13793 a592a061-630c-0410-9148-cb99ea01b6c8

lib/configure.py

index 7ddbcd613a81292ec86f16cee5d5545f2f37ad79..b7ac1eac55af63aaebbadd33d1bf87ac12c27d6b 100644 (file)
@@ -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()