[Numpy-svn] r4257 - branches/numpy.scons/numpy/core

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Oct 19 06:14:59 EDT 2007


Author: cdavid
Date: 2007-10-19 05:14:54 -0500 (Fri, 19 Oct 2007)
New Revision: 4257

Modified:
   branches/numpy.scons/numpy/core/SConstruct
Log:
Dump the config.log file for numpy.core

Modified: branches/numpy.scons/numpy/core/SConstruct
===================================================================
--- branches/numpy.scons/numpy/core/SConstruct	2007-10-19 04:33:58 UTC (rev 4256)
+++ branches/numpy.scons/numpy/core/SConstruct	2007-10-19 10:14:54 UTC (rev 4257)
@@ -1,4 +1,4 @@
-# Last Change: Fri Oct 19 10:00 AM 2007 J
+# Last Change: Fri Oct 19 07:00 PM 2007 J
 # vim:syntax=python
 import os
 import sys
@@ -121,6 +121,12 @@
 
 config.Finish()
 
+try:
+    config_file = open('config.log')
+    for i in  config_file.readlines():
+        print i
+except:
+    pass
 #==========
 #  Build
 #==========




More information about the Numpy-svn mailing list