]> code.ossystems Code Review - openembedded-core.git/commitdiff
dbus: don't pass --reverse to run-parts, busybox doesn't support it
authorRoss Burton <ross@openedhand.com>
Mon, 24 Sep 2007 15:14:12 +0000 (15:14 +0000)
committerRoss Burton <ross@openedhand.com>
Mon, 24 Sep 2007 15:14:12 +0000 (15:14 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2776 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/dbus/dbus-1.0.2/dbus-1.init
meta/packages/dbus/dbus_1.0.2.bb

index 38e7574ad52bcbce58922bdd6ad39b3c1d31d860..88fe7e33db7f9e2d3e7c979f3b0f9d406041edef 100644 (file)
@@ -62,7 +62,8 @@ start_it_up()
 shut_it_down()
 {
   if [ -d $EVENTDIR ]; then
-      run-parts --reverse --arg=stop $EVENTDIR
+      # TODO: --reverse when busybox supports it
+      run-parts --arg=stop $EVENTDIR
   fi
   echo -n "Stopping $DESC: "
   start-stop-daemon --stop  --quiet --pidfile $PIDFILE \
index 0fafa28d120162df4efd6d319b3aa63d3da2700f..0cfb4ebf46b00c212a783739151a9c1169f77879 100644 (file)
@@ -6,7 +6,7 @@ DESCRIPTION = "message bus system for applications to talk to one another"
 LICENSE = "GPL"
 DEPENDS = "expat glib-2.0 virtual/libintl"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \
           file://tmpdir.patch;patch=1 \