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

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Oct 25 03:24:11 EDT 2007


Author: cdavid
Date: 2007-10-25 02:24:06 -0500 (Thu, 25 Oct 2007)
New Revision: 4284

Modified:
   branches/numpy.scons/numpy/core/SConstruct
Log:
Dump config.log in numpy.core

Modified: branches/numpy.scons/numpy/core/SConstruct
===================================================================
--- branches/numpy.scons/numpy/core/SConstruct	2007-10-25 06:05:09 UTC (rev 4283)
+++ branches/numpy.scons/numpy/core/SConstruct	2007-10-25 07:24:06 UTC (rev 4284)
@@ -1,4 +1,4 @@
-# Last Change: Thu Oct 25 02:00 PM 2007 J
+# Last Change: Thu Oct 25 04:00 PM 2007 J
 # vim:syntax=python
 import os
 import sys
@@ -148,6 +148,11 @@
 #config.CheckMKL('/home/david/opt/intel/mkl/9.1.023/', '32')
 
 config.Finish()
+config_f = open('config.log', 'r')
+print "++++++++++ config.log dump ++++++++++++++++++"
+for i in config_f:
+    print i.strip('\n')
+print "+++++++++++++++++++++++++++++++++++++++++++++"
 
 #==========
 #  Build




More information about the Numpy-svn mailing list