diff options
author | David Cournapeau <cournape@gmail.com> | 2008-06-12 09:49:16 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-06-12 09:49:16 +0000 |
commit | be47c6fe315821136d4953de01bacb67a07c5f0a (patch) | |
tree | 9f95dd4ee4807ed1cbd96d65b52b67ade9ac9c7f | |
parent | d039ec97e0fbfee068e90ae800681aac0c959f27 (diff) | |
download | numpy-be47c6fe315821136d4953de01bacb67a07c5f0a.tar.gz |
Adapat numpy.lib scons build to new build_dir conventions.
-rw-r--r-- | numpy/lib/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/SConscript b/numpy/lib/SConscript index e09449387..06cc9380b 100644 --- a/numpy/lib/SConscript +++ b/numpy/lib/SConscript @@ -1,9 +1,9 @@ -# Last Change: Tue May 20 05:00 PM 2008 J +# Last Change: Thu Jun 12 06:00 PM 2008 J # vim:syntax=python from numscons import GetNumpyEnvironment, scons_get_paths env = GetNumpyEnvironment(ARGUMENTS) env.Append(CPPPATH = scons_get_paths(env['include_bootstrap'])) -_compiled_base = env.NumpyPythonExtension('_compiled_base', +_compiled_base = env.DistutilsPythonExtension('_compiled_base', source = ['src/_compiled_base.c']) |