summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-06-08 14:36:59 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-06-08 14:36:59 +0000
commit8ed869de4d33a5f435cd5ec193c190fd115f38c6 (patch)
treee2bca8873730131521b616bb6d9fcf5ca6c679b2 /tools
parentf6d3cebdfa9995b72e4761c6de9b38bb87965653 (diff)
downloadrockbox-8ed869de4d33a5f435cd5ec193c190fd115f38c6.tar.gz
rockbox-8ed869de4d33a5f435cd5ec193c190fd115f38c6.zip
make install now works correctly for the sims
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6613 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildzip.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index b01a63daf4..b61cc48124 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -48,8 +48,8 @@ sub buildzip {
mkdir ".rockbox/langs", 0777;
mkdir ".rockbox/rocks", 0777;
mkdir ".rockbox/codecs", 0777;
- `find . -name "codec*.rock" ! -empty | xargs --replace=foo cp foo .rockbox/codecs/`;
- `find . -name "*.rock" -o -name "*.ovl" ! -empty ! -name "codec*.rock" | xargs --replace=foo cp foo .rockbox/rocks/`;
+ `find apps -name "codec*.rock" ! -empty | xargs --replace=foo cp foo .rockbox/codecs/`;
+ `find apps -name "*.rock" -o -name "*.ovl" ! -empty ! -name "codec*.rock" | xargs --replace=foo cp foo .rockbox/rocks/`;
open VIEWERS, "$ROOT/apps/plugins/viewers.config" or
die "can't open viewers.config";