diff options
author | Phil Blundell <philb@gnu.org> | 2011-06-02 10:15:36 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-02 14:55:57 +0100 |
commit | b3ca61b45f71897401983bf048dbd0430fea04bd (patch) | |
tree | 2e1da29b65a499b3220c21648a18832d0e9b9368 /meta/recipes-core/dbus | |
parent | 65616abdcaf0f13139b24b542e4d613c23b99313 (diff) | |
download | poky-b3ca61b45f71897401983bf048dbd0430fea04bd.tar.gz |
dbus: avoid dependency on x11 for -native build
The native variant already configures --without-x so the X11 libs are
redundant. Adjust the DEPENDS to match.
(From OE-Core rev: ec49721cb01cef56c9275841bd69b74ac9d5ed73)
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dbus')
-rw-r--r-- | meta/recipes-core/dbus/dbus.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index fb2f6d49bd..5f9a8a3081 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc | |||
@@ -5,8 +5,11 @@ SECTION = "base" | |||
5 | LICENSE = "AFL-2 | GPLv2+" | 5 | LICENSE = "AFL-2 | GPLv2+" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=10dded3b58148f3f1fd804b26354af3e \ | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=10dded3b58148f3f1fd804b26354af3e \ |
7 | file://dbus/dbus.h;firstline=6;endline=20;md5=6eea2e0c7750dd8e620dcb1437312fa5" | 7 | file://dbus/dbus.h;firstline=6;endline=20;md5=6eea2e0c7750dd8e620dcb1437312fa5" |
8 | DEPENDS = "expat virtual/libintl virtual/libx11 libsm" | 8 | x11deps = "virtual/libx11 libsm" |
9 | DEPENDS_virtclass-nativesdk = "expat virtual/libintl virtual/libx11" | 9 | basedeps = "expat virtual/libintl" |
10 | DEPENDS = "${basedeps} ${x11deps}" | ||
11 | DEPENDS_virtclass-native = "${basedeps}" | ||
12 | DEPENDS_virtclass-nativesdk = "${basedeps} virtual/libx11" | ||
10 | 13 | ||
11 | SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ | 14 | SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ |
12 | file://tmpdir.patch; \ | 15 | file://tmpdir.patch; \ |