diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-30 18:15:19 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-30 18:15:19 +0000 |
commit | 97dbaec1d08ab8ed0d613e724a0fa50b169daad6 (patch) | |
tree | 5304cac550c5e816873c245e6366110cf752b5bd /numpy | |
parent | 65d44cd7958babd0059f2690ed57f42b48e3a542 (diff) | |
download | numpy-97dbaec1d08ab8ed0d613e724a0fa50b169daad6.tar.gz |
Added swig_opts to umfpack_info.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/system_info.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index f7a6d2866..c94e90361 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1704,7 +1704,8 @@ class umfpack_info(system_info): # print d if len(self.combine_paths(d,['umfpack.h']))==1: dict_append(info,include_dirs=[d], - define_macros=[('SCIPY_UMFPACK_H',None)]) + define_macros=[('SCIPY_UMFPACK_H',None)], + swig_opts = ['-I' + d]) self.set_info(**info) return return |