diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-22 20:48:49 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-04-28 10:38:38 +0200 |
commit | 21f10c11f39020f9502d741c774a12d1aeb39499 (patch) | |
tree | fdc66c039950da89d82b6b7405ebfc50cbba693a /meta-oe/recipes-support/espeak | |
parent | 723b55f5c1f7df21dbcfa7cb2dcaecb10d886041 (diff) | |
download | meta-openembedded-21f10c11f39020f9502d741c774a12d1aeb39499.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>
Diffstat (limited to 'meta-oe/recipes-support/espeak')
-rw-r--r-- | meta-oe/recipes-support/espeak/espeak_1.37.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/espeak/espeak_1.37.bb b/meta-oe/recipes-support/espeak/espeak_1.37.bb index cf05d2645b..273fe340e3 100644 --- a/meta-oe/recipes-support/espeak/espeak_1.37.bb +++ b/meta-oe/recipes-support/espeak/espeak_1.37.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require espeak.inc | 1 | require espeak.inc |
2 | inherit siteinfo | 2 | inherit siteinfo |
3 | 3 | ||
4 | EXTRA_PHONEMES = '${@base_contains("SITEINFO_ENDIANNESS", "be", "espeak-data (= ${PV})", "", d)}' | 4 | EXTRA_PHONEMES = '${@bb.utils.contains("SITEINFO_ENDIANNESS", "be", "espeak-data (= ${PV})", "", d)}' |
5 | RDEPENDS_${PN} = "portaudio-v19 ${EXTRA_PHONEMES}" | 5 | RDEPENDS_${PN} = "portaudio-v19 ${EXTRA_PHONEMES}" |
6 | 6 | ||
7 | SRC_URI[md5sum] = "5c7b292d0537232868b4ac1317d76c02" | 7 | SRC_URI[md5sum] = "5c7b292d0537232868b4ac1317d76c02" |