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-03-26 00:39:56 +0300
committerZoltan Varga <vargaz@gmail.com>2018-03-26 00:39:56 +0300
commit4e276971c0c7408a351294d38f857a1322ec3da2 (patch)
treec32d529948745227945864273410d903993dd4b5
parent1075824929104bbaec58882d1f5e9202251d7484 (diff)
Fix the ios sdk build. (#7823)
-rw-r--r--sdks/builds/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sdks/builds/Makefile b/sdks/builds/Makefile
index df7f7e62e9b..69c78e048ec 100644
--- a/sdks/builds/Makefile
+++ b/sdks/builds/Makefile
@@ -6,7 +6,8 @@ RELEASE=$(if $(filter $(CONFIGURATION),release),1)
CCACHE:=$(shell which ccache)
-ifneq ($(shell uname),"Darwin")
+UNAME=$(shell uname)
+ifneq ($(UNAME),Darwin)
# iOS requires Xcode to be available, and Xcode is only available on macOS
DISABLE_IOS=1
endif