diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-05 13:20:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:17 +0000 |
commit | 5aa3b930092d1ae525cefacbb19966b883ec730b (patch) | |
tree | 670333367c68adc52415475072ec2bc317ac9a98 /meta/lib | |
parent | ffa746946f830c8161e43a151df7cd942bce63f3 (diff) | |
download | poky-5aa3b930092d1ae525cefacbb19966b883ec730b.tar.gz |
oeqa/selftest/recipetool: update for libjpeg-turbo migration
The recipe creation test of libmatchbox now depends on libjpeg-turbo, not jpeg.
(From OE-Core rev: 58bb2d82f4f1b111641c480a27836be6119ee279)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/recipetool.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
397 | checkvars['S'] = '${WORKDIR}/git' | 397 | checkvars['S'] = '${WORKDIR}/git' |
398 | checkvars['PV'] = '1.11+git${SRCPV}' | 398 | checkvars['PV'] = '1.11+git${SRCPV}' |
399 | checkvars['SRC_URI'] = srcuri | 399 | checkvars['SRC_URI'] = srcuri |
400 | checkvars['DEPENDS'] = 'libpng pango libx11 libxext jpeg' | 400 | checkvars['DEPENDS'] = set(['libjpeg-turbo', 'libpng', 'libx11', 'libxext', 'pango']) |
401 | inherits = ['autotools', 'pkgconfig'] | 401 | inherits = ['autotools', 'pkgconfig'] |
402 | self._test_recipe_contents(recipefile, checkvars, inherits) | 402 | self._test_recipe_contents(recipefile, checkvars, inherits) |
403 | 403 | ||