From mboxrd@z Thu Jan 1 00:00:00 1970 From: llandwerlin at gmail.com Date: Thu, 9 Dec 2010 10:55:00 +0100 Subject: [Buildroot] [PATCH 02/16] dbus: ensure startup script is well installed In-Reply-To: <1291888514-31385-1-git-send-email-llandwerlin@gmail.com> References: <1291888514-31385-1-git-send-email-llandwerlin@gmail.com> Message-ID: <1291888514-31385-3-git-send-email-llandwerlin@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Lionel Landwerlin If /etc/init.d does not exist, we need to be sure that the dbus startup script is installed at the right place. Signed-off-by: Lionel Landwerlin --- package/dbus/dbus.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk index 1820286..f485ceb 100644 --- a/package/dbus/dbus.mk +++ b/package/dbus/dbus.mk @@ -60,7 +60,7 @@ endif define DBUS_INSTALL_TARGET_FIXUP rm -rf $(TARGET_DIR)/var/lib/dbus ln -sf /tmp/dbus $(TARGET_DIR)/var/lib/dbus - $(INSTALL) -m 0755 package/dbus/S30dbus $(TARGET_DIR)/etc/init.d + $(INSTALL) -m 0755 -D package/dbus/S30dbus $(TARGET_DIR)/etc/init.d/S30dbus endef DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_INSTALL_TARGET_FIXUP -- 1.7.2.3