diff options
author | David Cournapeau <cournape@gmail.com> | 2008-01-08 15:48:36 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-01-08 15:48:36 +0000 |
commit | 75ba2835b0a692556c468770785e0e9f66c75feb (patch) | |
tree | 50f3a480392c53094c1d376f24c5da96d21b0eb7 | |
parent | 73ab47ef17f5783f3b6aa2517a25ee19f2d9a420 (diff) | |
download | numpy-75ba2835b0a692556c468770785e0e9f66c75feb.tar.gz |
Fix typo in numpy.core SConstruct
-rw-r--r-- | numpy/core/SConstruct | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/SConstruct b/numpy/core/SConstruct index 0eda5eb50..8b8272024 100644 --- a/numpy/core/SConstruct +++ b/numpy/core/SConstruct @@ -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 @@ for type in ('Py_intptr_t', 'PY_LONG_LONG'): # 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 @@ if mathlib: 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 |