diff options
author | Barry Wardell <rockbox@barrywardell.net> | 2007-03-20 12:00:50 +0000 |
---|---|---|
committer | Barry Wardell <rockbox@barrywardell.net> | 2007-03-20 12:00:50 +0000 |
commit | 101ec7eb9a5574da3bb5c362215a281a5f1d315d (patch) | |
tree | b408a4165f7b3ecc364042dd73224641121b56cf /tools | |
parent | 1535529cc33e421218e9fa21f82a1f34ad9a9a7a (diff) | |
download | rockbox-101ec7eb9a5574da3bb5c362215a281a5f1d315d.tar.gz rockbox-101ec7eb9a5574da3bb5c362215a281a5f1d315d.zip |
FS#6840 - Move rockbox.* inside .rockbox on targets that allow it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/buildzip.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl index 83397c8e94..21cf54cb6b 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -335,6 +335,12 @@ sub runone { `find .rockbox | xargs $ziptool $output >/dev/null`; if($target && ($fonts != 1)) { + # On some targets, rockbox.* is inside .rockbox + if($target !=~ /mod|ajz|wma/i) { + `cp $target .rockbox/$target`; + $target = ".rockbox/".$target; + } + if($verbose) { print "$ziptool $output $target\n"; } |