diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-04 13:09:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 14:24:43 +0000 |
commit | 6ab56c54f316154d89f03ec0c6c2cb39d1736cff (patch) | |
tree | 952d5bde1c81457378d6d995051cd04674dbf489 /meta/recipes-graphics/wayland | |
parent | 82233cd647b1ecc256afb0c3378906cf8af46f8e (diff) | |
download | poky-6ab56c54f316154d89f03ec0c6c2cb39d1736cff.tar.gz |
classes/recipes: More optimal DISTRO_FEATURES references
Using the contains function results in more optimal sstate checksums
resulting in better cache reuse as we as more consistent code.
(From OE-Core rev: 9c93526756e7cbbff027c88eb972f877bcb1f057)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.3.1.bb | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.3.1.bb b/meta/recipes-graphics/wayland/weston_1.3.1.bb index 82bcf3ba39..d97f6af45b 100644 --- a/meta/recipes-graphics/wayland/weston_1.3.1.bb +++ b/meta/recipes-graphics/wayland/weston_1.3.1.bb | |||
@@ -55,16 +55,14 @@ do_install_append() { | |||
55 | # Weston doesn't need the .la files to load modules, so wipe them | 55 | # Weston doesn't need the .la files to load modules, so wipe them |
56 | rm -f ${D}/${libdir}/weston/*.la | 56 | rm -f ${D}/${libdir}/weston/*.la |
57 | 57 | ||
58 | for feature in ${DISTRO_FEATURES}; do | 58 | # If X11, ship a desktop file to launch it |
59 | # If X11, ship a desktop file to launch it | 59 | if [ "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" = "x11" ]; then |
60 | if [ "$feature" = "x11" ]; then | 60 | install -d ${D}${datadir}/applications |
61 | install -d ${D}${datadir}/applications | 61 | install ${WORKDIR}/weston.desktop ${D}${datadir}/applications |
62 | install ${WORKDIR}/weston.desktop ${D}${datadir}/applications | ||
63 | 62 | ||
64 | install -d ${D}${datadir}/icons/hicolor/48x48/apps | 63 | install -d ${D}${datadir}/icons/hicolor/48x48/apps |
65 | install ${WORKDIR}/weston.png ${D}${datadir}/icons/hicolor/48x48/apps | 64 | install ${WORKDIR}/weston.png ${D}${datadir}/icons/hicolor/48x48/apps |
66 | fi | 65 | fi |
67 | done | ||
68 | } | 66 | } |
69 | 67 | ||
70 | PACKAGES += "${PN}-examples" | 68 | PACKAGES += "${PN}-examples" |