[Numpy-svn] r4715 - branches/build_with_scons/numpy/core

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Jan 8 10:48:43 EST 2008


Author: cdavid
Date: 2008-01-08 09:48:36 -0600 (Tue, 08 Jan 2008)
New Revision: 4715

Modified:
   branches/build_with_scons/numpy/core/SConstruct
Log:
Fix typo in numpy.core SConstruct

Modified: branches/build_with_scons/numpy/core/SConstruct
===================================================================
--- branches/build_with_scons/numpy/core/SConstruct	2008-01-08 14:11:53 UTC (rev 4714)
+++ branches/build_with_scons/numpy/core/SConstruct	2008-01-08 15:48:36 UTC (rev 4715)
@@ -1,4 +1,4 @@
-# Last Change: Tue Jan 08 10:00 PM 2008 J
+# Last Change: Wed Jan 09 12:00 AM 2008 J
 # vim:syntax=python
 import os
 import sys
@@ -57,17 +57,17 @@
 # Checking signal stuff
 #----------------------
 if is_npy_no_signal():
-    config_sym.append(('NPY_NOSMP', '1'))
+    numpyconfig_sym.append(('NPY_NOSMP', '1'))
     config.Define('NPY_NOSMP', 1, "define to 1 to disable SMP support ")
 
 #---------------------
 # Checking SMP option
 #---------------------
 if define_no_smp():
-    config_sym.append(('NPY_NOSMP', '1'))
+    numpyconfig_sym.append(('NPY_NOSMP', '1'))
     config.Define('NPY_NOSMP', 1, "define to 1 to disable SMP support ")
 else:
-    config_sym.append(('NPY_NOSMP', '0'))
+    numpyconfig_sym.append(('NPY_NOSMP', '0'))
     config.Define('NPY_NOSMP', 0, "define to 1 to disable SMP support ")
 
 #----------------------
@@ -81,7 +81,7 @@
 mlib = check_mlibs(config, mlibs)
 
 # XXX: this is ugly: mathlib has nothing to do in a public header file
-config_sym.append(('MATHLIB', ','.join(mlib)))
+numpyconfig_sym.append(('MATHLIB', ','.join(mlib)))
 
 #----------------------------------
 # Checking the math funcs available




More information about the Numpy-svn mailing list