Keep a copy of output from lib/configure.py to configure.log

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14591 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2006-08-09 15:27:12 +00:00
parent 743c2be02d
commit f6dbef59e6
3 changed files with 31 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-08-08 Bo Peng <ben.bob@gmail.com>
* configure.py: Keep a copy of the output of configure.py to a log
file configure.log.
2006-08-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* configure.py: fix the header of lyxrc.defaults.

View File

@ -13,6 +13,24 @@
import sys, os, re, shutil, glob
class Tee:
''' Writing to a Tee object will write to all file objects it keeps.
That is to say, writing to Tee(sys.stdout, open(logfile, 'w')) will
write to sys.stdout as well as a log file.
'''
def __init__(self, *args):
self.files = args
def write(self, data):
for f in self.files:
result = f.write(data)
return result
def writelines(self, seq):
for i in seq:
self.write(i)
def writeToFile(filename, lines, append = False):
" utility function: write or append lines to filename "
if append:
@ -662,6 +680,7 @@ if __name__ == '__main__':
rc_entries = ''
lyx_keep_temps = False
version_suffix = ''
logfile = 'configure.log'
## Parse the command line
for op in sys.argv[1:]: # default shell/for list is $*, the options
if op in [ '-help', '--help', '-h' ]:
@ -682,7 +701,11 @@ Options:
else:
print "Unknown option", op
sys.exit(1)
#
#
# set up log file for stdout and stderr
log = open(logfile, 'w')
sys.stdout = Tee(sys.stdout, log)
sys.stderr = Tee(sys.stderr, log)
# check if we run from the right directory
srcdir = os.path.dirname(sys.argv[0])
if srcdir == '':

View File

@ -64,6 +64,8 @@ What's new
- Display latex package checking results faster during configuration.
- Log the output of configure.py to a log file configure.log.
- Change the encoding of some python scripts from iso-8859-15 to
iso-8859-1. The former causes problems with embedded python.