From de4fc307b5f06b706cbefc519aa5cb711807b66c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 26 Feb 2018 10:34:18 +0100 Subject: [PATCH] scummvm: fix parse with recent oe-core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to oe-core: commit 0391fcad9103abca0796a068f957d0df63ab4776 Author: Ross Burton Date: Mon Jan 29 17:11:10 2018 +0000 classes/utils: remove compatibility functions Signed-off-by: Andreas Müller --- recipes-games/scummvm/scummvm_1.5.0.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-games/scummvm/scummvm_1.5.0.bb b/recipes-games/scummvm/scummvm_1.5.0.bb index 725e625..a009866 100644 --- a/recipes-games/scummvm/scummvm_1.5.0.bb +++ b/recipes-games/scummvm/scummvm_1.5.0.bb @@ -15,7 +15,7 @@ SRC_URI = " \ " DEPENDS = "virtual/libsdl libvorbis libogg zlib flac faad2 \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" + ${@oe.utils.conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" EXTRA_OECONF = " \ --host=${HOST_SYS} \ @@ -29,7 +29,7 @@ EXTRA_OECONF = " \ --default-dynamic \ --enable-all-engines \ --disable-fluidsynth \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_LIBDIR}/..', d)} \ + ${@oe.utils.conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_LIBDIR}/..', d)} \ " EXTRA_OEMAKE = "MANDIR=${mandir}"