diff options
author | Magnus Holmgren <magnushol@gmail.com> | 2005-07-05 20:15:44 +0000 |
---|---|---|
committer | Magnus Holmgren <magnushol@gmail.com> | 2005-07-05 20:15:44 +0000 |
commit | df384086f21ad43bc91d9776b8ec57d9e2823446 (patch) | |
tree | e0cf4a87034bb43b98d754735ff66a0ca8f54598 | |
parent | 5c2c991d148de6aafae4836f4e40edb453734d94 (diff) |
Copy the right files to .rockbox/rocks. Only tested on Cygwin though...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7031 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/buildzip.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index 3da8753541..3882745752 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -49,7 +49,7 @@ sub buildzip { mkdir ".rockbox/rocks", 0777; mkdir ".rockbox/codecs", 0777; `find apps -name "*.codec" ! -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/`; + `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"; |