diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-22 16:31:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-22 16:31:10 -0400 |
commit | 493acecdf54c95b0675709983668ad6b5d802875 (patch) | |
tree | 8fadf5569c5aff8f7ef7bc8e27c3cf070603b9ae /standalone | |
parent | 3ab2653a41f0f8b0321a637a65e57e410a06523a (diff) |
fix
Diffstat (limited to 'standalone')
-rw-r--r-- | standalone/android/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/standalone/android/Makefile b/standalone/android/Makefile index 0637dd293..5a33e45be 100644 --- a/standalone/android/Makefile +++ b/standalone/android/Makefile @@ -53,9 +53,9 @@ build: source build-utils # a tarball, along with a list of all the hard links that should be # set up. cd $(GITTREE) && mkdir -p links - cd $(GITTREE) && find -samefile bin/git > links/git - cd $(GITTREE) && find -samefile bin/git-shell > links/git-shell - cd $(GITTREE) && find -samefile bin/git-upload-pack > links/git-upload-pack + cd $(GITTREE) && find -samefile bin/git -not -wholename ./bin/git > links/git + cd $(GITTREE) && find -samefile bin/git-shell -not -wholename ./bin/git-shell > links/git-shell + cd $(GITTREE) && find -samefile bin/git-upload-pack -not -wholename ./bin/git-upload-pack > links/git-upload-pack cd $(GITTREE) && find -type f -not -samefile bin/git -not -samefile bin/git-shell -not -samefile bin/git-upload-pack|tar czf ../git.tar.gz -T - cp source/git/git.tar.gz source/term/libs/armeabi/lib.git.tar.gz.so |