From 726cdb645bc900251058bae7a8e9b9008c6fa460 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 27 Feb 2013 12:04:46 -0700 Subject: [PATCH] support iOS SDK 6.1 --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index be624157e4..fb9cbe3905 100755 --- a/makefile +++ b/makefile @@ -567,7 +567,8 @@ ifeq ($(platform),darwin) ifeq ($(arch),arm) ios-version := \ - $(shell if test -d $(sdk-dir)/iPhoneOS6.0.sdk; then echo 6.0; \ + $(shell if test -d $(sdk-dir)/iPhoneOS6.1.sdk; then echo 6.1; \ + elif test -d $(sdk-dir)/iPhoneOS6.0.sdk; then echo 6.0; \ elif test -d $(sdk-dir)/iPhoneOS5.1.sdk; then echo 5.1; \ elif test -d $(sdk-dir)/iPhoneOS5.0.sdk; then echo 5.0; \ elif test -d $(sdk-dir)/iPhoneOS4.3.sdk; then echo 4.3; \