diff options
author | David Cournapeau <cournape@gmail.com> | 2008-07-06 05:22:17 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-07-06 05:22:17 +0000 |
commit | 01320e0149a08299461ab730bf0bdce6c9ba3483 (patch) | |
tree | 6a7a0c5a92060c52d371877b21a76a2ce831f3f7 | |
parent | 297a4b8cd70077eb905575dcd4d369a762514ecf (diff) | |
download | numpy-01320e0149a08299461ab730bf0bdce6c9ba3483.tar.gz |
Prepend bootstrapping include path to avoid problem with debian numpy.
-rw-r--r-- | numpy/core/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/SConscript b/numpy/core/SConscript index c3a81399e..035c15299 100644 --- a/numpy/core/SConscript +++ b/numpy/core/SConscript @@ -1,4 +1,4 @@ -# Last Change: Thu Jun 12 04:00 PM 2008 J +# Last Change: Sun Jul 06 01:00 PM 2008 J # vim:syntax=python import os import sys @@ -234,7 +234,7 @@ multiarray_api = env.GenerateMultiarrayApi('multiarray_api', ufunc_api = env.GenerateUfuncApi('ufunc_api', pjoin('code_generators', 'ufunc_api_order.txt')) -env.Append(CPPPATH = ['include', '.']) +env.Prepend(CPPPATH = ['include', '.']) #----------------- # Build multiarray |