aboutsummaryrefslogtreecommitdiff
path: root/android-configure.sh
diff options
context:
space:
mode:
authorVince Harron <vharron@google.com>2014-09-02 13:30:37 -0700
committerVince Harron <vharron@google.com>2014-09-03 19:27:40 +0000
commit7d039d298b8885d967ac7b86f34f107b31d43c2e (patch)
tree1262d39f1d12f8a5c87631ec9019065a8354f992 /android-configure.sh
parent343aca01dddd2f7410af0d6e49636b076ac19949 (diff)
downloadqemu-7d039d298b8885d967ac7b86f34f107b31d43c2e.tar.gz
fixed minor typo in OSX SDK search path
Emulator build will now be able to find sdks installed in the legacy path /Developer/SDKs/Mac* Change-Id: Id5d4e699468210acc9c0428b2b7bb7c5d5bdd323
Diffstat (limited to 'android-configure.sh')
-rwxr-xr-xandroid-configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-configure.sh b/android-configure.sh
index 0ea6ef316f..53b6cdf229 100755
--- a/android-configure.sh
+++ b/android-configure.sh
@@ -314,7 +314,7 @@ if [ "$HOST_OS" = darwin ]; then
OSX_SDK_ROOT=$XCODE_PATH/Platforms/MacOSX.platform/Developer/SDKs/MacOSX${OSX_SDK_VERSION}.sdk
log "OSX: Looking for $OSX_SDK_ROOT"
if [ ! -d "$OSX_SDK_ROOT" ]; then
- OSX_SDK_ROOT=/Developer/SDKs/MaxOSX${OSX_SDK_VERSION}.sdk
+ OSX_SDK_ROOT=/Developer/SDKs/MacOSX${OSX_SDK_VERSION}.sdk
log "OSX: Looking for $OSX_SDK_ROOT"
if [ ! -d "$OSX_SDK_ROOT" ]; then
echo "ERROR: Could not find SDK $OSX_SDK_VERSION at $OSX_SDK_ROOT"