summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2015-12-26 13:57:02 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2016-09-29 06:38:45 +0200
commit256068388dffd7f87b6d52735fc426e5310a76be (patch)
tree4bc9c40c5ffc7d8e0ba6ee6def0dd4e0e6ab072a
parent42cf6a87c90c4e1e62c7e417bba6d7ad6343889b (diff)
recipes: stop using base_contains
The base_contains function is deprecated and we ought to use bb.utils.contains instead. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r--recipes-gnome/gdk-pixbuf/gdk-pixbuf_%.bbappend2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-gnome/gdk-pixbuf/gdk-pixbuf_%.bbappend b/recipes-gnome/gdk-pixbuf/gdk-pixbuf_%.bbappend
index 8e0bbc2..7bceb3c 100644
--- a/recipes-gnome/gdk-pixbuf/gdk-pixbuf_%.bbappend
+++ b/recipes-gnome/gdk-pixbuf/gdk-pixbuf_%.bbappend
@@ -1,2 +1,2 @@
# build for x11, at least lxpanel needs this
-PACKAGECONFIG_append = "${@base_contains('DISTRO_FEATURES', 'x11', ' x11', '', d)}"
+PACKAGECONFIG_append = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' x11', '', d)}"