From 67022bb531c434b75b6867e8ee1b318c7605f126 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Tue, 15 Oct 2013 16:38:40 +0200 Subject: [PATCH] Try multiple mingw compilers I have different mingw compile on Debian stable and unstable. This makes the check run on both my systems. Note however, that with i686-w64-mingw32, compilation currently fails. --- Makefile.git | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.git b/Makefile.git index 170eb58..3d0097e 100644 --- a/Makefile.git +++ b/Makefile.git @@ -21,7 +21,8 @@ check: configure check-windows: mkdir -p _check-win - cd _check-win && ../configure --host=i586-mingw32msvc CC=i586-mingw32msvc-gcc + cd _check-win && ../configure --host=i586-mingw32msvc CC=i586-mingw32msvc-gcc || \ + ../configure --host=i686-w64-mingw32 CC=i686-w64-mingw32-gcc cd _check-win && $(MAKE) check-autotools: -- 2.39.2