diff options
author | Ross Burton <ross.burton@intel.com> | 2020-01-02 23:19:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-27 16:48:08 +0000 |
commit | c83ad9949bcfef5496e0ff82b709a4408bbcc0b4 (patch) | |
tree | ead4187848c7c7ea326a6b6ee0ec7820ad583138 | |
parent | 6f5e5f50ccb352c75f3d0ad292baf32111e4cf8f (diff) | |
download | poky-c83ad9949bcfef5496e0ff82b709a4408bbcc0b4.tar.gz |
update_font_cache: fix ownership of .uuid files too
(From OE-Core rev: cc2b5dfbfe353425d0b463a4a01589b64f2f5e60)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/postinst-intercepts/update_font_cache | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/postinst-intercepts/update_font_cache b/scripts/postinst-intercepts/update_font_cache index 3053c7065f..46bdb8c572 100644 --- a/scripts/postinst-intercepts/update_font_cache +++ b/scripts/postinst-intercepts/update_font_cache | |||
@@ -6,4 +6,6 @@ | |||
6 | set -e | 6 | set -e |
7 | 7 | ||
8 | PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D -E ${fontconfigcacheenv} $D${libexecdir}/${binprefix}fc-cache --sysroot=$D --system-only ${fontconfigcacheparams} | 8 | PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D -E ${fontconfigcacheenv} $D${libexecdir}/${binprefix}fc-cache --sysroot=$D --system-only ${fontconfigcacheparams} |
9 | |||
9 | chown -R root:root $D${fontconfigcachedir} | 10 | chown -R root:root $D${fontconfigcachedir} |
11 | find $D -type f -name .uuid -exec chown root:root '{}' + | ||