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:
parent
96aba33d1e
commit
109a867742
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue