summaryrefslogtreecommitdiffstats
path: root/meta/packages/dbus/dbus-native_1.2.4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/dbus/dbus-native_1.2.4.bb')
-rw-r--r--meta/packages/dbus/dbus-native_1.2.4.bb18
1 files changed, 6 insertions, 12 deletions
diff --git a/meta/packages/dbus/dbus-native_1.2.4.bb b/meta/packages/dbus/dbus-native_1.2.4.bb
index 0c6f5815f8..3b750f9e8d 100644
--- a/meta/packages/dbus/dbus-native_1.2.4.bb
+++ b/meta/packages/dbus/dbus-native_1.2.4.bb
@@ -3,24 +3,18 @@ inherit native
3 3
4DEPENDS = "glib-2.0-native libxml2-native expat-native" 4DEPENDS = "glib-2.0-native libxml2-native expat-native"
5 5
6PR = "r6" 6PR = "r7"
7 7
8EXTRA_OECONF_X = "--without-x" 8EXTRA_OECONF_X = "--without-x"
9 9
10do_stage() { 10do_install() {
11 oe_runmake install 11 autotools_do_install
12 autotools_stage_all
13 12
14 # for dbus-glib-native introspection generation 13 # for dbus-glib-native introspection generation
15 install -d ${STAGING_DATADIR}/dbus 14 install -d ${D}${datadir}/dbus/
16 install -m 0644 bus/session.conf ${STAGING_DATADIR}/dbus/session.conf 15 install -m 0644 bus/session.conf ${D}${datadir}/dbus/session.conf
17 16
18 # dbus-glib-native and dbus-glib need this xml file 17 # dbus-glib-native and dbus-glib need this xml file
19 install -d ${STAGING_DATADIR_NATIVE}/dbus/
20 cd ${S} 18 cd ${S}
21 ./bus/dbus-daemon --introspect > ${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml 19 ./bus/dbus-daemon --introspect > ${D}${datadir}/dbus/dbus-bus-introspect.xml
22}
23
24do_install() {
25 :
26} 20}