Skip to content

Commit

Permalink
makerelease: Provide ANDROID_HOME from outside
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Feb 2, 2013
1 parent 85cd65a commit 0a4b21e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion makerelease
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/sh -e

if [ -z "$ANDROID_HOME" ]; then
echo 'No $ANDROID_HOME specified.'
exit 1
fi

VERSION=$1
PREV_VERSION=$2

Expand Down Expand Up @@ -27,7 +32,6 @@ make -j3
make distclean

# android
export ANDROID_HOME=/home/tatsuhiro/workspace/android/android-9-r8b
./android-config
./android-make -j3
./android-release
Expand Down

0 comments on commit 0a4b21e

Please sign in to comment.