diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2016-02-23 16:32:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:33:01 +0000 |
commit | bb151b888c9063209159c1d85565f45da6fd81c1 (patch) | |
tree | 47d29a53da08a8485606f46436590ed20aa90f16 /meta/recipes-graphics/fontconfig | |
parent | e9f5134cdbf71bc4ae0ebf5790bc96eed6a4afc9 (diff) | |
download | poky-bb151b888c9063209159c1d85565f45da6fd81c1.tar.gz |
fontconfig: Don't add font directories from host
* when enabled, configure check for "fonts" directory existence in following directories:
/usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11
on _host_ system and if it exists it adds <dir> element to
/etc/fonts/fonts.conf
* update_font_cache postinst will then fail if host system has e.g.
/usr/lib/X11/fonts while the rootfs doesn't have it
* if you're installing fonts to other directories, you'll need to adapt
this EXTRA_OECONF to find them that's why it's in separate variable
[YOCTO #9155] - update_font_cache postinst failing with read-only filesystem
(From OE-Core rev: 8cc47e6bfb7f623711d9cd9e71a7f72ab2838f57)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/fontconfig')
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb index 9bbff208c4..b3bc7ebf4a 100644 --- a/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb | |||
@@ -40,6 +40,10 @@ inherit autotools pkgconfig | |||
40 | 40 | ||
41 | FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig" | 41 | FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig" |
42 | 42 | ||
43 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR}" | 43 | # comma separated list of additional directories |
44 | # /usr/share/fonts is already included by default (you can change it with --with-default-fonts) | ||
45 | FONTCONFIG_FONT_DIRS ?= "no" | ||
46 | |||
47 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR} --with-add-fonts=${FONTCONFIG_FONT_DIRS}" | ||
44 | 48 | ||
45 | BBCLASSEXTEND = "native" | 49 | BBCLASSEXTEND = "native" |