diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-05 23:05:10 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-05 23:05:10 +0000 |
commit | 1c497e60457a2e125a3e4fc839d6453bfe585834 (patch) | |
tree | 4688a25afda658a88e900a0c5a6d4f6f755c3268 /tools | |
parent | b1e1e44041f7c078a8a1e4f31ab0cde03efd1b2a (diff) | |
download | rockbox-1c497e60457a2e125a3e4fc839d6453bfe585834.tar.gz rockbox-1c497e60457a2e125a3e4fc839d6453bfe585834.zip |
First audio codec playback attempt by Miikka Pekkarinen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/buildzip.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index e3c013631b..b01a63daf4 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -47,7 +47,9 @@ sub buildzip { mkdir ".rockbox", 0777; mkdir ".rockbox/langs", 0777; mkdir ".rockbox/rocks", 0777; - `find . -name "*.rock" -o -name "*.ovl" ! -empty | xargs --replace=foo cp foo .rockbox/rocks/`; + 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/`; open VIEWERS, "$ROOT/apps/plugins/viewers.config" or die "can't open viewers.config"; |