8000 Merge pull request #7119 from gfyoung/mingw_patch · numpy/numpy@cacdfd3 · GitHub
[go: up one dir, main page]

Skip to content

Commit cacdfd3

Browse files
committed
Merge pull request #7119 from gfyoung/mingw_patch
BUG: Fixed mingw.lib error
2 parents 3bc8ed4 + bce84bb commit cacdfd3

File tree

1 file changed

+1
-1
lines changed
  • numpy/distutils/fcompiler

1 file changed

+1
-1
lines changed

numpy/distutils/fcompiler/gnu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def get_library_dirs(self):
313313
if target:
314314
d = os.path.normpath(self.get_libgcc_dir())
315315
root = os.path.join(d, *((os.pardir,)*4))
316-
path = os.path.join(root, target, "lib")
316+
path = os.path.join(root, "lib")
317317
mingwdir = os.path.normpath(path)
318318
if os.path.exists(os.path.join(mingwdir, "libmingwex.a")):
319319
opt.append(mingwdir)

0 commit comments

Comments
 (0)
0