Merge pull request #2301 from vpeter4/fc-kodi-9

fontconfig: add kodi font folder to a search list
This commit is contained in:
Christian Hewitt 2017-12-11 18:14:12 +04:00 committed by GitHub
commit de76520d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/storage/.kodi/media/Fonts</dir>
</fontconfig>

View File

@ -48,4 +48,7 @@ pre_configure_target() {
post_makeinstall_target() {
rm -rf $INSTALL/usr/bin
mkdir -p $INSTALL/etc/fonts/conf.d
cp $PKG_DIR/conf.d/*.conf $INSTALL/etc/fonts/conf.d
}