diff options
-rw-r--r-- | recipes-graphics/wayland/weston_5.0.0.imx.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/recipes-graphics/wayland/weston_5.0.0.imx.bb b/recipes-graphics/wayland/weston_5.0.0.imx.bb index 7649893b..10ce08ca 100644 --- a/recipes-graphics/wayland/weston_5.0.0.imx.bb +++ b/recipes-graphics/wayland/weston_5.0.0.imx.bb | |||
@@ -120,7 +120,14 @@ do_install_append() { | |||
120 | fi | 120 | fi |
121 | 121 | ||
122 | # install default weston.ini | 122 | # install default weston.ini |
123 | install -D -m 0644 ${WORKDIR}/weston.ini ${D}${sysconfdir}/xdg/weston/weston.ini | 123 | if [ -z "${@bb.utils.filter('BBFILE_COLLECTIONS', 'aglprofilegraphical', d)}" ]; then |
124 | if [ "${@bb.utils.filter('BBFILE_COLLECTIONS', 'ivi', d)}" ]; then | ||
125 | WESTON_INI_SRCDIR=${B}/ivi-shell | ||
126 | else | ||
127 | WESTON_INI_SRCDIR=${B} | ||
128 | fi | ||
129 | install -D -m 0644 ${WESTON_INI_SRCDIR}/weston.ini ${D}${sysconfdir}/xdg/weston/weston.ini | ||
130 | fi | ||
124 | } | 131 | } |
125 | 132 | ||
126 | PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', '${PN}-xwayland', '', d)} \ | 133 | PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', '${PN}-xwayland', '', d)} \ |