From d37c6ce09b3ee3cb9ec79dc04d15b41d7d231e36 Mon Sep 17 00:00:00 2001 From: Joshua Warner Date: Wed, 30 Apr 2014 13:23:22 -0600 Subject: [PATCH] add support for 7.1 ios SDK --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index dc9208c42c..d0de5dbae6 100755 --- a/makefile +++ b/makefile @@ -668,7 +668,8 @@ ifeq ($(platform),darwin) sdk-dir = $(platform-dir)/Developer/SDKs ios-version := $(shell \ - if test -d $(sdk-dir)/$(target)7.0.sdk; then echo 7.0; \ + if test -d $(sdk-dir)/$(target)7.1.sdk; then echo 7.1; \ + elif test -d $(sdk-dir)/$(target)7.0.sdk; then echo 7.0; \ elif test -d $(sdk-dir)/$(target)6.1.sdk; then echo 6.1; \ elif test -d $(sdk-dir)/$(target)6.0.sdk; then echo 6.0; \ elif test -d $(sdk-dir)/$(target)5.1.sdk; then echo 5.1; \