diff options
| author | Ross Burton <ross.burton@intel.com> | 2016-04-22 20:48:49 +0100 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2016-05-02 14:03:03 -0700 |
| commit | cf1819332d48d3307aa2e80255834aa7911cd0dc (patch) | |
| tree | f09b113c456f713beab1df0d084122eaca59570d /meta-oe/recipes-devtools | |
| parent | 0e6cc19225103311e5c696618aec3fdaf8a10274 (diff) | |
| download | meta-openembedded-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-devtools')
| -rw-r--r-- | meta-oe/recipes-devtools/ltrace/ltrace_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/ltrace/ltrace_git.bb b/meta-oe/recipes-devtools/ltrace/ltrace_git.bb index d8d037ed68..bc4e27166d 100644 --- a/meta-oe/recipes-devtools/ltrace/ltrace_git.bb +++ b/meta-oe/recipes-devtools/ltrace/ltrace_git.bb | |||
| @@ -24,7 +24,7 @@ S = "${WORKDIR}/git" | |||
| 24 | 24 | ||
| 25 | inherit autotools | 25 | inherit autotools |
| 26 | 26 | ||
| 27 | PACKAGECONFIG ?= "${@base_contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)}" | 27 | PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)}" |
| 28 | PACKAGECONFIG[unwind] = "--with-libunwind,--without-libunwind,libunwind" | 28 | PACKAGECONFIG[unwind] = "--with-libunwind,--without-libunwind,libunwind" |
| 29 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux" | 29 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,libselinux" |
| 30 | 30 | ||
