summaryrefslogtreecommitdiffstats
path: root/meta-efl/recipes-efl/e17
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-04-22 20:48:54 +0100
committerArmin Kuster <akuster808@gmail.com>2016-05-02 14:03:03 -0700
commit33837ef82ade4d2b04f32e263c42538b19ca59ae (patch)
treedbdb13f795f6079b87068246806ae9e37c02d9f3 /meta-efl/recipes-efl/e17
parentd336edb5d2d0013530ab55cfb9709dd10d529e86 (diff)
downloadmeta-openembedded-33837ef82ade4d2b04f32e263c42538b19ca59ae.tar.gz
meta-efl: use bb.utils.contains() instead of base_contains()
base_contains() is a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/e17')
-rw-r--r--meta-efl/recipes-efl/e17/e-wm.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-efl/recipes-efl/e17/e-wm.inc b/meta-efl/recipes-efl/e17/e-wm.inc
index 45637f366..444ec8959 100644
--- a/meta-efl/recipes-efl/e17/e-wm.inc
+++ b/meta-efl/recipes-efl/e17/e-wm.inc
@@ -7,8 +7,8 @@ SRCNAME = "e"
7inherit e update-alternatives gettext pkgconfig 7inherit e update-alternatives gettext pkgconfig
8S = "${WORKDIR}/${SRCNAME}" 8S = "${WORKDIR}/${SRCNAME}"
9 9
10PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \ 10PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \
11 ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" 11 ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
12PACKAGECONFIG[pam] = "--enable-pam,--disable-pam,libpam" 12PACKAGECONFIG[pam] = "--enable-pam,--disable-pam,libpam"
13PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd" 13PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
14 14