diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-08-07 10:15:40 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-08-07 10:15:40 +0000 |
commit | b7a6781520db3c8df5c5bc0783c2318c7e4c478b (patch) | |
tree | 40fce9959f7760b4b0b624d5160201edc8716efb /tools | |
parent | 73160322fe454b561cf7a15e0a3b9ac160c52428 (diff) | |
download | rockbox-b7a6781520db3c8df5c5bc0783c2318c7e4c478b.tar.gz rockbox-b7a6781520db3c8df5c5bc0783c2318c7e4c478b.zip |
Fix FS#7549 - plugins would only get listed once in viewers.config which meant some extensions dont appear as supported
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14228 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-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 ea7aabee0b..e384eb8bd7 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -314,7 +314,7 @@ STOP } print VIEWERS $line; } - elsif(-e ".rockbox/$r") { + elsif(-e ".rockbox/rocks/$r") { # in case the same plugin works for multiple extensions, it # was already moved to the viewers dir print VIEWERS $line; |