From 408dffc85ba3598e9d57bdc2ff691583feaefeca Mon Sep 17 00:00:00 2001 From: Naveen M K Date: Sat, 2 Nov 2024 12:28:30 +0530 Subject: [PATCH] makesetup: generalize the `MINGW` case in theory, it should be correct for other system too and would fix cross-compilation --- Modules/makesetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/makesetup b/Modules/makesetup index 13e4149c8598c41..5e2ada098a5452e 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -97,7 +97,7 @@ CYGWIN*) if test $libdir = . ExtraLibDir='$(LIBPL)' fi ExtraLibs="-L$ExtraLibDir -lpython\$(LDVERSION)";; -MINGW*) +*) ExtraLibs='$(BLDLIBRARY)' ExtraLibDepends='$(LIBRARY_DEPS)';; esac