From: Ross Burton Date: Tue, 5 Jan 2016 13:20:39 +0000 (+0000) Subject: oeqa/selftest/recipetool: update for libjpeg-turbo migration X-Git-Tag: 2016-4~1721 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=58bb2d82f4f1b111641c480a27836be6119ee279;p=openembedded-core.git oeqa/selftest/recipetool: update for libjpeg-turbo migration The recipe creation test of libmatchbox now depends on libjpeg-turbo, not jpeg. Signed-off-by: Ross Burton --- diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py index 6a7ef9d961..4103a88fad 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py @@ -397,7 +397,7 @@ class RecipetoolTests(RecipetoolBase): checkvars['S'] = '${WORKDIR}/git' checkvars['PV'] = '1.11+git${SRCPV}' checkvars['SRC_URI'] = srcuri - checkvars['DEPENDS'] = 'libpng pango libx11 libxext jpeg' + checkvars['DEPENDS'] = set(['libjpeg-turbo', 'libpng', 'libx11', 'libxext', 'pango']) inherits = ['autotools', 'pkgconfig'] self._test_recipe_contents(recipefile, checkvars, inherits)