Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2018-09-28 04:31:33 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-09-28 04:31:33 +0300
commit46e0249d4cdf8ed3e1f1ad2f62e27a75309f41b5 (patch)
tree320bbe38f36c923dfde3213b2d7143140fb53267
parent910395a05f6514e779a8ebf923269425ffafeccf (diff)
[sdks] One more update to get XA PR builds working on Linux (#10855)
It turns out some Debian versions identify themselves as `Debian GNU/Linux`, add this string to the list of distributions which have mingw. This *should* fix the PR builds (fingers crossed)
-rw-r--r--sdks/builds/mxe.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdks/builds/mxe.mk b/sdks/builds/mxe.mk
index ea784ccb928..d3e4c7910b2 100644
--- a/sdks/builds/mxe.mk
+++ b/sdks/builds/mxe.mk
@@ -3,7 +3,7 @@ ifeq ($(UNAME),Linux)
LINUX_FLAVOR=$(shell ./determine-linux-flavor.sh)
endif
-LINUX_WITH_MINGW=:Ubuntu:,:Debian:
+LINUX_WITH_MINGW=:Ubuntu:,:Debian:,:Debian GNU/Linux:
LINUX_HAS_MINGW=$(if $(findstring :$(LINUX_FLAVOR):,$(LINUX_WITH_MINGW)),yes)
ifeq ($(LINUX_HAS_MINGW),yes)