diff options
author | Thuy Tran <thuy.tran.xh@renesas.com> | 2018-12-05 14:54:28 +0700 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@renesas.com> | 2019-02-28 09:43:53 +0700 |
commit | 0311c6b1a02611971c9ed5a18fb5ce0fe21c5e22 (patch) | |
tree | cf95d3f079e0f9571afd8f05412ff8148e019e77 /meta-rcar-gen3/recipes-graphics/wayland | |
parent | ee2c656b3eb98bc426ffb27e4d3d1479de7028d9 (diff) |
rcar-gen3: Change base_conditional to oe.utils.conditional
This commit changes to use oe.utils.conditional because these base_*
functions were removed in meta/lib/oe from YP2.5.
(From Poky rev: 58449f0e9cc4a05c88204cf8ba887b55467d886e)
Signed-off-by: Thuy Tran <thuy.tran.xh@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-graphics/wayland')
-rw-r--r-- | meta-rcar-gen3/recipes-graphics/wayland/weston.inc | 8 | ||||
-rw-r--r-- | meta-rcar-gen3/recipes-graphics/wayland/weston_2.0.0.bbappend | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/meta-rcar-gen3/recipes-graphics/wayland/weston.inc b/meta-rcar-gen3/recipes-graphics/wayland/weston.inc index e475aea..c1cc206 100644 --- a/meta-rcar-gen3/recipes-graphics/wayland/weston.inc +++ b/meta-rcar-gen3/recipes-graphics/wayland/weston.inc @@ -3,14 +3,14 @@ require include/multimedia-control.inc PACKAGECONFIG_remove_virtclass-multilib-lib32 = "launch" DEPENDS_append = " \ - ${@base_conditional('USE_GLES', '1', ' libgbm', '', d)}" + ${@oe.utils.conditional('USE_GLES', '1', ' libgbm', '', d)}" RDEPENDS_${PN}_append = " \ - ${@base_conditional('USE_GLES', '1', ' libgbm', '', d)} \ + ${@oe.utils.conditional('USE_GLES', '1', ' libgbm', '', d)} \ " RDEPENDS_${PN}-examples_append = " \ - ${@base_conditional('USE_GLES', '1', ' libgbm', '', d)}" + ${@oe.utils.conditional('USE_GLES', '1', ' libgbm', '', d)}" EXTRA_OECONF_append = " \ - ${@base_conditional('USE_GLES', '1', '', \ + ${@oe.utils.conditional('USE_GLES', '1', '', \ ' WESTON_NATIVE_BACKEND="fbdev-backend.so"', d)}" diff --git a/meta-rcar-gen3/recipes-graphics/wayland/weston_2.0.0.bbappend b/meta-rcar-gen3/recipes-graphics/wayland/weston_2.0.0.bbappend index 280aa79..ec1434e 100644 --- a/meta-rcar-gen3/recipes-graphics/wayland/weston_2.0.0.bbappend +++ b/meta-rcar-gen3/recipes-graphics/wayland/weston_2.0.0.bbappend @@ -21,7 +21,7 @@ SRC_URI_append = " \ S = "${WORKDIR}/git" PACKAGECONFIG_append = " \ - ${@base_conditional('USE_MULTIMEDIA', '1', ' v4l2', '', d)} \ + ${@oe.utils.conditional('USE_MULTIMEDIA', '1', ' v4l2', '', d)} \ " PACKAGECONFIG[v4l2] = " --enable-v4l2, --disable-v4l2,,kernel-module-vsp2driver" |