diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-09-26 10:32:43 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-09-26 10:32:43 +0000 |
| commit | 43cdfdefbbd32548edace526c563f0e70c5a92d6 (patch) | |
| tree | 35b2ecd0f14215bd7801f92335e669db49f9f918 /tools | |
| parent | 0dd8ba4725a03cadb5724a9555d6add1f07dc913 (diff) | |
| download | rockbox-43cdfdefbbd32548edace526c563f0e70c5a92d6.zip rockbox-43cdfdefbbd32548edace526c563f0e70c5a92d6.tar.gz rockbox-43cdfdefbbd32548edace526c563f0e70c5a92d6.tar.bz2 rockbox-43cdfdefbbd32548edace526c563f0e70c5a92d6.tar.xz | |
Android: Exclude the main binary from make zip.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28169 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/buildzip.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index fe0bd59..cb0c2b2 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -702,7 +702,10 @@ elsif(($exe =~ /rockboxui/)) { # simulator, exclude the exe file $exe = ""; } +elsif($exe eq "librockbox.so") { + # android, exclude the binary + $exe=""; +} runone($exe, $incfonts); - |