diff options
author | David Cournapeau <cournape@gmail.com> | 2008-05-20 08:41:11 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-05-20 08:41:11 +0000 |
commit | a29ca1abcb84691a9d32b9608346b9a54a3509b6 (patch) | |
tree | 52c25d1aa075de5cf698d477fab2a6e301e71cf2 /numpy | |
parent | 87fddf4db1ea174df3428685baeb30586a30541b (diff) | |
download | numpy-a29ca1abcb84691a9d32b9608346b9a54a3509b6.tar.gz |
Do not mess with __NUMPY_SETUP__ in scons scripts anymore: this is handled in
numscons.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/fft/SConstruct | 5 | ||||
-rw-r--r-- | numpy/lib/SConstruct | 5 | ||||
-rw-r--r-- | numpy/linalg/SConstruct | 6 | ||||
-rw-r--r-- | numpy/numarray/SConstruct | 5 | ||||
-rw-r--r-- | numpy/random/SConstruct | 6 |
5 files changed, 5 insertions, 22 deletions
diff --git a/numpy/fft/SConstruct b/numpy/fft/SConstruct index 2a53f6477..2f7688cf5 100644 --- a/numpy/fft/SConstruct +++ b/numpy/fft/SConstruct @@ -1,8 +1,5 @@ -# Last Change: Thu Oct 18 09:00 PM 2007 J +# Last Change: Tue May 20 05:00 PM 2008 J # vim:syntax=python -import __builtin__ -__builtin__.__NUMPY_SETUP__ = True -from numpy.distutils.misc_util import get_numpy_include_dirs from numscons import GetNumpyEnvironment, scons_get_paths env = GetNumpyEnvironment(ARGUMENTS) diff --git a/numpy/lib/SConstruct b/numpy/lib/SConstruct index 84795da48..e09449387 100644 --- a/numpy/lib/SConstruct +++ b/numpy/lib/SConstruct @@ -1,8 +1,5 @@ -# Last Change: Thu Oct 18 09:00 PM 2007 J +# Last Change: Tue May 20 05:00 PM 2008 J # vim:syntax=python -import __builtin__ -__builtin__.__NUMPY_SETUP__ = True -from numpy.distutils.misc_util import get_numpy_include_dirs from numscons import GetNumpyEnvironment, scons_get_paths env = GetNumpyEnvironment(ARGUMENTS) diff --git a/numpy/linalg/SConstruct b/numpy/linalg/SConstruct index 24d648ef7..19f4eec42 100644 --- a/numpy/linalg/SConstruct +++ b/numpy/linalg/SConstruct @@ -1,11 +1,7 @@ -# Last Change: Fri Nov 16 05:00 PM 2007 J +# Last Change: Tue May 20 05:00 PM 2008 J # vim:syntax=python import os.path -import __builtin__ -__builtin__.__NUMPY_SETUP__ = True - -from numpy.distutils.misc_util import get_numpy_include_dirs, get_mathlibs from numscons import GetNumpyEnvironment, scons_get_paths, \ scons_get_mathlib from numscons import CheckF77LAPACK diff --git a/numpy/numarray/SConstruct b/numpy/numarray/SConstruct index aa780be87..e07b45ae7 100644 --- a/numpy/numarray/SConstruct +++ b/numpy/numarray/SConstruct @@ -1,8 +1,5 @@ -# Last Change: Fri Oct 19 09:00 AM 2007 J +# Last Change: Tue May 20 05:00 PM 2008 J # vim:syntax=python -import __builtin__ -__builtin__.__NUMPY_SETUP__ = True -from numpy.distutils.misc_util import get_numpy_include_dirs from numscons import GetNumpyEnvironment, scons_get_paths env = GetNumpyEnvironment(ARGUMENTS) diff --git a/numpy/random/SConstruct b/numpy/random/SConstruct index 95957ccd7..2cec3f939 100644 --- a/numpy/random/SConstruct +++ b/numpy/random/SConstruct @@ -1,11 +1,7 @@ -# Last Change: Tue Nov 13 11:00 PM 2007 J +# Last Change: Tue May 20 05:00 PM 2008 J # vim:syntax=python import os -import __builtin__ -__builtin__.__NUMPY_SETUP__ = True - -from numpy.distutils.misc_util import get_numpy_include_dirs, get_mathlibs from numscons import GetNumpyEnvironment, scons_get_paths, \ scons_get_mathlib |