diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-07-15 15:20:05 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:50 +0100 |
commit | 096b4c639b6326b0bc14bcb279e04ca4939ad1aa (patch) | |
tree | a0fe3cf2d43a826c21ef525fdff69b5e84181c81 /meta/lib/oeqa | |
parent | 49d3d7da29a201b393196663d44f265f5a64ed8d (diff) | |
download | poky-096b4c639b6326b0bc14bcb279e04ca4939ad1aa.tar.gz |
libxsettings-client: Remove as unneeded
xsettings-client is not meant to be a shared library and the only
user in oe-core (libmatchbox) now has an in-tree copy.
(From OE-Core rev: ed5cbf977dca8f3d85c8d933071c6e49fb4bd95f)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/recipetool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py index 9436301937..2e38758aec 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py | |||
@@ -383,7 +383,7 @@ class RecipetoolTests(RecipetoolBase): | |||
383 | @testcase(1194) | 383 | @testcase(1194) |
384 | def test_recipetool_create_git(self): | 384 | def test_recipetool_create_git(self): |
385 | # Ensure we have the right data in shlibs/pkgdata | 385 | # Ensure we have the right data in shlibs/pkgdata |
386 | bitbake('libpng pango libx11 libxext jpeg libxsettings-client libcheck') | 386 | bitbake('libpng pango libx11 libxext jpeg libcheck') |
387 | # Try adding a recipe | 387 | # Try adding a recipe |
388 | tempsrc = os.path.join(self.tempdir, 'srctree') | 388 | tempsrc = os.path.join(self.tempdir, 'srctree') |
389 | os.makedirs(tempsrc) | 389 | os.makedirs(tempsrc) |
@@ -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'] = set(['libcheck', 'libjpeg-turbo', 'libpng', 'libx11', 'libxsettings-client', 'libxext', 'pango']) | 400 | checkvars['DEPENDS'] = set(['libcheck', '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 | ||