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:
authorLudovic Henry <ludovic@xamarin.com>2018-02-19 02:12:43 +0300
committerMarek Safar <marek.safar@gmail.com>2018-02-19 18:59:45 +0300
commit23acd0f78be3764af13150a1c8e531ba92889795 (patch)
tree6a5519a890efc0c367da39127893b94dfbd674d3 /sdks/builds/Makefile
parent7da8b503c6d678b05684fa7d93e92b49befe2f7d (diff)
Fix for XA integration
Diffstat (limited to 'sdks/builds/Makefile')
-rw-r--r--sdks/builds/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdks/builds/Makefile b/sdks/builds/Makefile
index 94c9f549a4b..b3bd7fdad95 100644
--- a/sdks/builds/Makefile
+++ b/sdks/builds/Makefile
@@ -2,9 +2,9 @@ TOP=$(realpath $(CURDIR)/../..)
include $(TOP)/sdks/versions.mk
include $(TOP)/sdks/paths.mk
-RELEASE?=true
+CONFIGURATION?=release
-CONFIGURATION=$(if $(filter $(RELEASE),true),release,debug)
+RELEASE=$(if $(filter $(CONFIGURATION),release),true,false)
#brew's libtool is not compatible with some of the deps needed (I.E. V8) so in those systems we need to explicit add to the path
#this is due mono not being compatible with xcode's libtool, which is what's on path by default