diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-08-14 16:27:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 16:27:42 -0500 |
commit | d79482d607e9a6338c27fbff27ccfde8879980b8 (patch) | |
tree | a28887469a6ccddfe40e54e6be8fa17658a8de0b /numpy | |
parent | ef69e5d5c288710f75c999a55558b879f04a4569 (diff) | |
parent | 7a05f44ece3f1dee518462bb2c4d09dbe83f9498 (diff) | |
download | numpy-d79482d607e9a6338c27fbff27ccfde8879980b8.tar.gz |
Merge pull request #9554 from rgommers/f2py-mingw32-issue
BUG: fix regression in 1.13.x in distutils.mingw32ccompiler.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index ec672e205..90b4def04 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -265,7 +265,7 @@ def find_python_dll(): lib_dirs = [] for stem in stems: for folder in sub_dirs: - lib_dirs = os.path.join(stem, folder) + lib_dirs.append(os.path.join(stem, folder)) # add system directory as well if 'SYSTEMROOT' in os.environ: |