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
This commit is contained in:
Jens Arnold 2008-08-26 23:41:52 +00:00
parent 96aba33d1e
commit 109a867742

View file

@ -208,10 +208,6 @@ sub buildzip {
# always disable fonts on non-bitmap targets
$fonts = 0;
}
# create the file so the database does not try indexing a folder
open(IGNORE, ">.rockbox/database.ignore") || die "can't open database.ignore";
close(IGNORE);
if($fonts) {
mkdir ".rockbox/fonts", 0777;
chdir(".rockbox/fonts");
@ -226,6 +222,10 @@ sub buildzip {
}
}
# create the file so the database does not try indexing a folder
open(IGNORE, ">.rockbox/database.ignore") || die "can't open database.ignore";
close(IGNORE);
mkdir ".rockbox/langs", 0777;
mkdir ".rockbox/rocks", 0777;
mkdir ".rockbox/rocks/games", 0777;