diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2023-04-17 12:11:58 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2023-04-17 13:29:52 -0600 |
commit | 33bdc45435302d96d58b3b4acecc5376ecd267d5 (patch) | |
tree | 63178588d3798c1c9b51ea902a5b831274174779 /numpy/distutils | |
parent | 22e515adc77880618f80c6fe0d8326ffb8d88ce0 (diff) | |
download | numpy-33bdc45435302d96d58b3b4acecc5376ecd267d5.tar.gz |
BUG, BLD: Fix indentation bug in distutils
This fixes a bug in distutils that prevented the use of the C++ linker
needed to link _multiarray_umath.
Fixes #23595
Diffstat (limited to 'numpy/distutils')
-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 d24162a42..871aa1099 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -259,7 +259,7 @@ class build_ext (old_build_ext): log.warn('resetting extension %r language from %r to %r.' % (ext.name, l, ext_language)) - ext.language = ext_language + ext.language = ext_language # global language all_languages.update(ext_languages) |