The file ownership needs to be explicitly set otherwise it inherits the user and group id of the build user.
Signed-off-by: Jonathan Liu <[email protected]> --- recipes-qt/qt5/qtbase.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc index d7c027f..93edb53 100644 --- a/recipes-qt/qt5/qtbase.inc +++ b/recipes-qt/qt5/qtbase.inc @@ -215,6 +215,7 @@ do_install_append() { # install fonts manually if they are missing if [ ! -d ${D}/${OE_QMAKE_PATH_LIBS}/fonts ]; then cp -a ${S}/lib/fonts ${D}/${OE_QMAKE_PATH_LIBS} + chown -R root:root ${D}/${OE_QMAKE_PATH_LIBS}/fonts fi # Remove example.pro file as it is useless -- 2.3.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
