summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/sato-screenshot
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2015-05-10 19:30:03 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-14 11:43:58 +0100
commit12d02d58e76d055144550b2bf487789e077dec15 (patch)
treedd07f26da8587531cdfee3f7a743f33dd2026ce4 /meta/recipes-sato/sato-screenshot
parent3a0a27f5af71f37c100a07dfe439fee8b462b668 (diff)
downloadpoky-12d02d58e76d055144550b2bf487789e077dec15.tar.gz
recipes-sato: add x11 to REQUIRED_DISTRO_FEATURES
They can't be built withou x11 in DISTRO_FEATURES. (From OE-Core rev: fa1d9b518708103b0b2e259aa78f8dd694cfc0d6) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/sato-screenshot')
-rw-r--r--meta/recipes-sato/sato-screenshot/sato-screenshot_git.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-sato/sato-screenshot/sato-screenshot_git.bb b/meta/recipes-sato/sato-screenshot/sato-screenshot_git.bb
index a079e03d97..8794032d25 100644
--- a/meta/recipes-sato/sato-screenshot/sato-screenshot_git.bb
+++ b/meta/recipes-sato/sato-screenshot/sato-screenshot_git.bb
@@ -16,7 +16,7 @@ SRC_URI = "git://git.yoctoproject.org/screenshot"
16 16
17S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"
18 18
19inherit autotools pkgconfig 19inherit autotools pkgconfig distro_features_check
20 20
21FILES_${PN} += "${libdir}/matchbox-panel/*.so" 21FILES_${PN} += "${libdir}/matchbox-panel/*.so"
22FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug" 22FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug"
@@ -24,3 +24,6 @@ FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug"
24do_install_append () { 24do_install_append () {
25 rm ${D}${libdir}/matchbox-panel/*.la 25 rm ${D}${libdir}/matchbox-panel/*.la
26} 26}
27
28# The matchbox-panel-2 requires x11 in DISTRO_FEATURES
29REQUIRED_DISTRO_FEATURES = "x11"