mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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
|
# always disable fonts on non-bitmap targets
|
||||||
$fonts = 0;
|
$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) {
|
if($fonts) {
|
||||||
mkdir ".rockbox/fonts", 0777;
|
mkdir ".rockbox/fonts", 0777;
|
||||||
chdir(".rockbox/fonts");
|
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/langs", 0777;
|
||||||
mkdir ".rockbox/rocks", 0777;
|
mkdir ".rockbox/rocks", 0777;
|
||||||
mkdir ".rockbox/rocks/games", 0777;
|
mkdir ".rockbox/rocks/games", 0777;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue