diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:57:06 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:57:06 +0000 |
commit | 233e28b73eb02b7db5fbc573ac2a058f98b8e416 (patch) | |
tree | 34e683b7bc784dd1afe16329ce873e1bc61f33c5 /numpy/distutils/command/build_ext.py | |
parent | 14a63a81f6dfed3390dfef8f3cb0a173524f24f0 (diff) | |
download | numpy-233e28b73eb02b7db5fbc573ac2a058f98b8e416.tar.gz |
Forgot to import get_build_architecture.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 5ad8c7fef..66bec3ac1 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -16,7 +16,7 @@ from numpy.distutils.exec_command import exec_command from numpy.distutils.system_info import combine_paths from numpy.distutils.misc_util import filter_sources, has_f_sources, \ has_cxx_sources, get_ext_source_files, \ - get_numpy_include_dirs, is_sequence + get_numpy_include_dirs, is_sequence, get_build_architecture from numpy.distutils.command.config_compiler import show_fortran_compilers try: |