aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/dlm/dlm_4.0.2.bb
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-04-22 20:48:49 +0100
committerArmin Kuster <akuster808@gmail.com>2016-05-02 14:03:03 -0700
commitcf1819332d48d3307aa2e80255834aa7911cd0dc (patch)
treef09b113c456f713beab1df0d084122eaca59570d /meta-oe/recipes-extended/dlm/dlm_4.0.2.bb
parent0e6cc19225103311e5c696618aec3fdaf8a10274 (diff)
downloadmeta-openembedded-contrib-cf1819332d48d3307aa2e80255834aa7911cd0dc.tar.gz
meta-oe: 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-oe/recipes-extended/dlm/dlm_4.0.2.bb')
-rw-r--r--meta-oe/recipes-extended/dlm/dlm_4.0.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/dlm/dlm_4.0.2.bb b/meta-oe/recipes-extended/dlm/dlm_4.0.2.bb
index 560630c74b..ff37305639 100644
--- a/meta-oe/recipes-extended/dlm/dlm_4.0.2.bb
+++ b/meta-oe/recipes-extended/dlm/dlm_4.0.2.bb
@@ -37,7 +37,7 @@ do_install_append (){
install -m 0644 ${S}/init/dlm.init ${D}${sysconfdir}/init.d/dlm
# install systemd unit files
- if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+ if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
install -d ${D}${systemd_unitdir}/system
install -m 0644 ${S}/init/dlm.service ${D}${systemd_unitdir}/system
fi