diff options
author | Fabian Pedregosa <fabian.pedregosa@inria.fr> | 2011-08-28 14:32:09 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2011-08-29 17:38:15 +0200 |
commit | d91521e5fd858726998146e6055f677cc3aeb011 (patch) | |
tree | 4c8afe7417e993a48572418cfc1bfb8973e1842e /numpy/distutils | |
parent | f73ced293e2a37306264763faafef369db18b602 (diff) | |
download | numpy-d91521e5fd858726998146e6055f677cc3aeb011.tar.gz |
FIX: add ufsparse to the libraries search path.
Fixes a build failure on macports when it detected umfpack but was
unable to build the extension module. Equivalent to the
'/usr/include/suitesparse' path under Debian.
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 6dedf5929..9d3d9d079 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -193,6 +193,8 @@ else: '/opt/local/lib','/sw/lib'], platform_bits) default_include_dirs = ['/usr/local/include', '/opt/include', '/usr/include', + # path of umfpack under macports + '/opt/local/include/ufsparse', '/opt/local/include', '/sw/include', '/usr/include/suitesparse'] default_src_dirs = ['.','/usr/local/src', '/opt/src','/sw/src'] |