From 9e127b177163b5e171208de908a5f94912e93709 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Thu, 19 May 2016 07:35:46 +0000 Subject: [PATCH] mingw64 fix git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39783 72102866-910b-0410-8b05-ffd578937521 --- Modules/GNUmakefile.bundles | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/GNUmakefile.bundles b/Modules/GNUmakefile.bundles index 6da79f5..4e59b5e 100644 --- a/Modules/GNUmakefile.bundles +++ b/Modules/GNUmakefile.bundles @@ -13,8 +13,9 @@ $(BUNDLE_NAME)_STANDARD_INSTALL = no DO_LIB_LINK=no ifeq ($(GNUSTEP_TARGET_OS), mingw32) DO_LIB_LINK=yes -endif -ifeq ($(GNUSTEP_TARGET_OS), cygwin) +else ifeq ($(GNUSTEP_TARGET_OS), mingw64) + DO_LIB_LINK=yes +else ifeq ($(GNUSTEP_TARGET_OS), cygwin) DO_LIB_LINK=yes endif ifeq ($(DO_LIB_LINK), yes)