diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 21:15:09 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 21:15:09 (GMT) |
commit | 3839d99b7913a37e370fbbedc5495162b2080e46 (patch) | |
tree | e29aee59ab2fbf5c318e407972ec66c2213955dd /Modules/makesetup | |
parent | e999e96143a85af9ed50e2ad240ff28113c4feba (diff) | |
download | cpython-3839d99b7913a37e370fbbedc5495162b2080e46.zip cpython-3839d99b7913a37e370fbbedc5495162b2080e46.tar.gz cpython-3839d99b7913a37e370fbbedc5495162b2080e46.tar.bz2 |
Issue #13756: Fix building extensions modules on Cygwin
Patch by Roumen Petrov, based on original patch by Jason Tishler.
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-x | Modules/makesetup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index 3297b78..b872337 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -91,7 +91,7 @@ CYGWIN*) if test $libdir = . else ExtraLibDir='$(LIBPL)' fi - ExtraLibs="-L$ExtraLibDir -lpython\$(VERSION)";; + ExtraLibs="-L$ExtraLibDir -lpython\$(LDVERSION)";; esac # Main loop |