diff options
Diffstat (limited to 'dbus/dbus_0.21.oe')
-rw-r--r-- | dbus/dbus_0.21.oe | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dbus/dbus_0.21.oe b/dbus/dbus_0.21.oe index 710bdbd21c..e9be99660d 100644 --- a/dbus/dbus_0.21.oe +++ b/dbus/dbus_0.21.oe @@ -1,4 +1,4 @@ -PR = "r2" +PR = "r3" HOMEPAGE = "http://www.freedesktop.org/Software/dbus" DESCRIPTION = "message bus system for applications to talk to one another" DEPENDS = "expat glib-2.0" @@ -18,6 +18,12 @@ FILES_${PN}-dev += " ${libdir}/dbus-1.0/include" pkg_postinst_dbus() { #!/bin/sh + +# can't do adduser stuff offline +if [ "x$D" != "x" ]; then + exit 1 +fi + MESSAGEUSER=messagebus MESSAGEHOME=/var/run/dbus |