From 2699b11503550bcfde7a31bf867e4cf780d3d5f9 Mon Sep 17 00:00:00 2001 From: Ignacio Casal Quinteiro Date: Wed, 25 Mar 2015 14:35:12 +0100 Subject: Makefile.instrospection: search for MINGW instead of MINGW32 On mingw64 the right string to search is MINGW64 so instead of search for a specific one we just search for the generic MINGW. Thanks Alexey for finding out this problem. https://bugzilla.gnome.org/show_bug.cgi?id=746740 --- Makefile.introspection | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.introspection b/Makefile.introspection index bcfecba4..b458166f 100644 --- a/Makefile.introspection +++ b/Makefile.introspection @@ -68,7 +68,7 @@ _gir_export_packages = $(foreach pkg,$($(_gir_name)_EXPORT_PACKAGES),--pkg-expor # a command-line argument --libtool="/bin/sh ../../libtool" into # --libtool=c:/opt/msys/1.0/bin/libtool. So just use sh.exe without path # because we already "know" where the libtool configure produced is. -_gir_libtool = $(if $(findstring MINGW32,$(shell uname -s)),--libtool="$(top_builddir)/libtool",$(if $(LIBTOOL),--libtool="$(LIBTOOL)")) +_gir_libtool = $(if $(findstring MINGW,$(shell uname -s)),--libtool="$(top_builddir)/libtool",$(if $(LIBTOOL),--libtool="$(LIBTOOL)")) # Macros for AM_SILENT_RULES prettiness _gir_verbosity = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1) -- cgit v1.2.1