diff options
author | Jonathan Liu <net147@gmail.com> | 2015-04-21 12:53:02 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-27 15:02:38 +0100 |
commit | 0dc2a530dfeadccd7b3baa2d8f5a478aa7ead1fb (patch) | |
tree | 82b632af4ecea421848a55324701499f32941774 /meta/classes | |
parent | 6579836d8283d576bb451320ca9984b313eb2180 (diff) | |
download | poky-0dc2a530dfeadccd7b3baa2d8f5a478aa7ead1fb.tar.gz |
postinst-intercepts/update_font_cache: fix ownership of fontconfig cache
The file ownership of the cache files in /var/cache/fontconfig needs to
be set to root:root otherwise it inherits the user and group id of the
build user.
[YOCTO #7411]
(From OE-Core rev: 0ecccc7e75f2833c4f2599ce46b6fb9a0bc06e22)
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/fontcache.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/fontcache.bbclass b/meta/classes/fontcache.bbclass index dcd1f04064..dfbdfa1e02 100644 --- a/meta/classes/fontcache.bbclass +++ b/meta/classes/fontcache.bbclass | |||
@@ -12,7 +12,7 @@ FONT_EXTRA_RDEPENDS ?= "fontconfig-utils" | |||
12 | fontcache_common() { | 12 | fontcache_common() { |
13 | if [ "x$D" != "x" ] ; then | 13 | if [ "x$D" != "x" ] ; then |
14 | $INTERCEPT_DIR/postinst_intercept update_font_cache ${PKG} mlprefix=${MLPREFIX} bindir=${bindir} \ | 14 | $INTERCEPT_DIR/postinst_intercept update_font_cache ${PKG} mlprefix=${MLPREFIX} bindir=${bindir} \ |
15 | libdir=${libdir} base_libdir=${base_libdir} | 15 | libdir=${libdir} base_libdir=${base_libdir} localstatedir=${localstatedir} |
16 | else | 16 | else |
17 | fc-cache | 17 | fc-cache |
18 | fi | 18 | fi |