diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-06-23 15:48:36 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-01 09:59:24 +0200 |
commit | 401eadb968ebf0cf67723f6022565718a44a874f (patch) | |
tree | f67952b2308d59b753918c32b7d82304d937dfc8 | |
parent | 96c5bf624b2f5d5eefe200f71fc1fa9def0727c8 (diff) | |
download | meta-openembedded-401eadb968ebf0cf67723f6022565718a44a874f.tar.gz |
open-vm-tools: base_contains --> bb.utils.contains
base_contains is deprecated, as the friendly warning reminds us.
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.0.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.0.5.bb b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.0.5.bb index 1142399dfe..9db43b0a1c 100644 --- a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.0.5.bb +++ b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.0.5.bb | |||
@@ -51,7 +51,7 @@ EXTRA_OECONF = "--without-icu --disable-multimon --disable-docs --disable-tests | |||
51 | --disable-grabbitmqproxy --disable-vgauth --disable-deploypkg \ | 51 | --disable-grabbitmqproxy --disable-vgauth --disable-deploypkg \ |
52 | --with-linuxdir=${STAGING_KERNEL_DIR} --with-kernel-release=${KERNEL_VERSION} --without-root-privileges" | 52 | --with-linuxdir=${STAGING_KERNEL_DIR} --with-kernel-release=${KERNEL_VERSION} --without-root-privileges" |
53 | 53 | ||
54 | EXTRA_OECONF += "${@base_contains('DISTRO_FEATURES', 'x11', '', '--without-x', d)}" | 54 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', '--without-x', d)}" |
55 | 55 | ||
56 | EXTRA_OEMAKE = "KERNEL_RELEASE=${KERNEL_VERSION}" | 56 | EXTRA_OEMAKE = "KERNEL_RELEASE=${KERNEL_VERSION}" |
57 | 57 | ||