Skip to content

Commit 23011be

Browse files
authored
Merge pull request #582 from DWesl/patch-1
BLD: Unset runtime_library_dirs on Cygwin
2 parents f165fb3 + b63cb29 commit 23011be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/basemap/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def run(self):
119119
# `distutils` bug (http://bugs.python.org/issue2437).
120120
library_dirs.append(os.path.join(geos_install_prefix, "bin"))
121121
runtime_library_dirs = []
122-
dlls = glob.glob(os.path.join(geos_install_prefix, "*", "geos_c.dll"))
122+
dlls = glob.glob(os.path.join(geos_install_prefix, "*", "*geos_c*.dll"))
123123
if dlls:
124124
data_files.append(("../..", sorted(dlls)))
125125

0 commit comments

Comments
 (0)