diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-28 19:12:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-28 19:12:54 -0400 |
commit | b9e4f361b7cd5f4d14ebe670c37f497fa0526167 (patch) | |
tree | b2670e329eb2e2d24dabcc6014d53e7802ddea66 /standalone/android | |
parent | 3c8750beddd82e6352a462c7f4a9638355920b64 (diff) |
fix 2 bugs in android runshell
Diffstat (limited to 'standalone/android')
-rw-r--r-- | standalone/android/Makefile | 2 | ||||
-rwxr-xr-x | standalone/android/runshell | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/standalone/android/Makefile b/standalone/android/Makefile index e7e25622c..f62268754 100644 --- a/standalone/android/Makefile +++ b/standalone/android/Makefile @@ -76,6 +76,8 @@ build: start git rev-parse HEAD > $(GIT_ANNEX_ANDROID_SOURCETREE)/term/libs/armeabi/lib.version.so cd $(GIT_ANNEX_ANDROID_SOURCETREE)/term && ant debug + mkdir -p ../../tmp + cp $(GIT_ANNEX_ANDROID_SOURCETREE)/term/bin/Term-debug.apk ../../tmp/git-annex.apk $(GIT_ANNEX_ANDROID_SOURCETREE)/openssl: cd $(GIT_ANNEX_ANDROID_SOURCETREE)/openssl && CC=$$(which cc) ./Configure android diff --git a/standalone/android/runshell b/standalone/android/runshell index 5c0952721..2b1426e51 100755 --- a/standalone/android/runshell +++ b/standalone/android/runshell @@ -54,7 +54,7 @@ buildtree () { } install () { - if $cmd test ! -e "$base/git-annex"; then + if $cmd test ! -e "$base/bin/git-annex"; then if ! $cmd mkdir -p "$HOME"; then $cmd echo "mkdir of $HOME failed!" fi @@ -100,7 +100,7 @@ run () { shift 1 exec "$cmd" "$@" else - if $cmd test -e "$HOME/.config/git-annex/autostart; then + if $cmd test -e "$HOME/.config/git-annex/autostart"; then git annex assistant --autostart || $cmd true fi /system/bin/sh |