diff options
author | Blake Griffith <blake.a.griffith@gmail.com> | 2013-07-18 21:26:58 -0500 |
---|---|---|
committer | Blake Griffith <blake.a.griffith@gmail.com> | 2013-09-05 20:09:44 -0500 |
commit | 022aea859a01a0f11372b28267a74aff9b8880f9 (patch) | |
tree | 8252152c21910903e7c1dc4492682caf767a0362 | |
parent | 5c630f06f9012cdfff9b35cf96cea4a696c6b66c (diff) | |
download | numpy-022aea859a01a0f11372b28267a74aff9b8880f9.tar.gz |
BLD: Added ufunc_override.h to setup.py.
-rw-r--r-- | numpy/core/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 3937b2374..1c8cea4f7 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -881,7 +881,8 @@ def configuration(parent_package='',top_path=None): umath_deps = [ generate_umath_py, join('src', 'umath', 'simd.inc.src'), - join(codegen_dir, 'generate_ufunc_api.py')] + join(codegen_dir, 'generate_ufunc_api.py'), + join('src', 'private', 'ufunc_override.h')] if not ENABLE_SEPARATE_COMPILATION: umath_deps.extend(umath_src) |