summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-08-26 23:41:52 +0000
committerJens Arnold <amiconn@rockbox.org>2008-08-26 23:41:52 +0000
commit109a8677425eefd10e4a4df759e3c1c9c857ff45 (patch)
tree2e5e6f4d1a51941bab5fc68035cab6d7f1b14920
parent96aba33d1ec353192b26c0b41097a8113f865dc6 (diff)
downloadrockbox-109a8677425eefd10e4a4df759e3c1c9c857ff45.tar.gz
rockbox-109a8677425eefd10e4a4df759e3c1c9c857ff45.zip
Don't include a database.ignore file in a font-only package.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18351 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/buildzip.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 02f26937d7..e6ddab9b3d 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -208,10 +208,6 @@ sub buildzip {
208 # always disable fonts on non-bitmap targets 208 # always disable fonts on non-bitmap targets
209 $fonts = 0; 209 $fonts = 0;
210 } 210 }
211 # create the file so the database does not try indexing a folder
212 open(IGNORE, ">.rockbox/database.ignore") || die "can't open database.ignore";
213 close(IGNORE);
214
215 if($fonts) { 211 if($fonts) {
216 mkdir ".rockbox/fonts", 0777; 212 mkdir ".rockbox/fonts", 0777;
217 chdir(".rockbox/fonts"); 213 chdir(".rockbox/fonts");
@@ -226,6 +222,10 @@ sub buildzip {
226 } 222 }
227 } 223 }
228 224
225 # create the file so the database does not try indexing a folder
226 open(IGNORE, ">.rockbox/database.ignore") || die "can't open database.ignore";
227 close(IGNORE);
228
229 mkdir ".rockbox/langs", 0777; 229 mkdir ".rockbox/langs", 0777;
230 mkdir ".rockbox/rocks", 0777; 230 mkdir ".rockbox/rocks", 0777;
231 mkdir ".rockbox/rocks/games", 0777; 231 mkdir ".rockbox/rocks/games", 0777;