[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] master eb4a210 5/5: Select 'msw_generic.make' for cr
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] master eb4a210 5/5: Select 'msw_generic.make' for cross building from *nix |
Date: |
Sat, 27 Aug 2016 00:01:43 +0000 (UTC) |
branch: master
commit eb4a2105e2df45d714ae45d8436ce98ca6e78e8c
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Select 'msw_generic.make' for cross building from *nix
---
configuration.make | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/configuration.make b/configuration.make
index 2b3ef2f..24221d6 100644
--- a/configuration.make
+++ b/configuration.make
@@ -27,6 +27,10 @@ uname := $(shell uname -s 2>/dev/null)
platform-makefile := posix_fhs.make
+ifeq (i686-w64-mingw32,$(findstring i686-w64-mingw32,$(LMI_HOST)))
+ platform-makefile := msw_generic.make
+endif
+
ifeq (MINGW,$(findstring MINGW,$(uname)))
platform-makefile := msw_msys.make
else