diff options
author | 2013-05-23 13:54:49 -0400 | |
---|---|---|
committer | 2013-05-23 13:54:49 -0400 | |
commit | 93e8893cf37080306ec522d389f7e4ecceb84355 (patch) | |
tree | 03151b380232a0b41943723b671857b7b9f48d6d /standalone/android/Makefile | |
parent | 90cc410cfbc9f94aeda702b44e49d0169cce75a5 (diff) |
Android app: Avoid using hard links to app's lib directory, which is sometimes on a different filesystem than the data directory.
Assumes symlinks work on all android. If not, this would need to be adapted
to try both. This worked for me.
Diffstat (limited to 'standalone/android/Makefile')
-rw-r--r-- | standalone/android/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/android/Makefile b/standalone/android/Makefile index 74a48c89f..85457a719 100644 --- a/standalone/android/Makefile +++ b/standalone/android/Makefile @@ -64,7 +64,7 @@ build: start $(GITTREE)/libexec/git-core/git-web--browse # Most of git is in one multicall binary, but a few important # commands are still shell scripts. Those are put into - # a tarball, along with a list of all the hard links that should be + # a tarball, along with a list of all the links that should be # set up. cd $(GITTREE) && mkdir -p links cd $(GITTREE) && find -samefile bin/git -not -wholename ./bin/git > links/git |