diff options
author | Sven Gothel <[email protected]> | 2012-12-27 07:24:06 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-12-27 07:24:06 +0100 |
commit | f514582845efaf2bf41cbcbeb1e2378d224b11a3 (patch) | |
tree | dfa116962cdffcf6f421cdfd4b0205308c7a278f /make/scripts/adb-launch-main.sh | |
parent | 57c4e440ffa53ba7f868a145212df78e2eb2f8f2 (diff) |
adb-launch-main.sh: ANDROID_SDK_HOME -> ANDROID_HOME
Diffstat (limited to 'make/scripts/adb-launch-main.sh')
-rw-r--r-- | make/scripts/adb-launch-main.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/scripts/adb-launch-main.sh b/make/scripts/adb-launch-main.sh index 6d6719209..e40cfeb11 100644 --- a/make/scripts/adb-launch-main.sh +++ b/make/scripts/adb-launch-main.sh @@ -15,8 +15,8 @@ export TARGET_ROOT=/data/projects export BUILD_DIR=../build-android-armv6 if [ -e /opt-linux-x86/android-sdk-linux_x86 ] ; then - export ANDROID_SDK_HOME=/opt-linux-x86/android-sdk-linux_x86 - export PATH=$ANDROID_SDK_HOME/platform-tools:$PATH + export ANDROID_HOME=/opt-linux-x86/android-sdk-linux_x86 + export PATH=$ANDROID_HOME/platform-tools:$PATH fi #TSTCLASS=jogamp.android.launcher.LauncherUtil |