summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rw-r--r--doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn2
-rwxr-xr-xstandalone/android/runshell2
3 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index e410f9eb5..8603adf17 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,8 @@ git-annex (5.20140518) UNRELEASED; urgency=medium
The repository must have been added using initremote.
* webapp: When setting up a ssh remote, record it using initremote,
so that it can be easily enabled elsewhere.
+ * android: Run busybox install with -s, since some versions of Android
+ prohibit making hard links.
-- Joey Hess <joeyh@debian.org> Mon, 19 May 2014 15:59:25 -0400
diff --git a/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn b/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
index 78f7a0482..36f9a452b 100644
--- a/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
+++ b/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
@@ -23,3 +23,5 @@ The only relevant log lines seem to be:
add git-annex.apk [2014-05-18 16:57:08 EEST] chat: git [--git-dir=/storage/emulated/legacy/annex/.git","--work-tree=/storage/emulated/legacy/annex","-c","core.bare=false","check-attr","-z","--stdin","annex.backend","annex.numcopies","--"]
[2014-05-18 16:57:08 EEST] read: sha256sum ["git-annex.apk"]
"""]]
+
+> Modified runshell to use busybox install -s; [[done]] --[[Joey]]
diff --git a/standalone/android/runshell b/standalone/android/runshell
index f6a0138e9..68f23b481 100755
--- a/standalone/android/runshell
+++ b/standalone/android/runshell
@@ -30,7 +30,7 @@ buildtree () {
$cmd ln -s "$base/lib/lib.$prog.so" "$base/bin/$prog"
done
- $cmd --install $base/bin
+ $cmd --install -s $base/bin
$cmd rm -rf "$base/bin.old"