From mboxrd@z Thu Jan 1 00:00:00 1970 From: llandwerlin at gmail.com Date: Sun, 17 Jan 2010 23:41:02 +0100 Subject: [Buildroot] [PATCH 14/15] dbus: fix target installation with BR2_HAVE_DEVFILES In-Reply-To: <1263768063-24133-1-git-send-email-llandwerlin@gmail.com> References: <1263768063-24133-1-git-send-email-llandwerlin@gmail.com> Message-ID: <1263768063-24133-15-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 Signed-off-by: Lionel Landwerlin --- package/dbus/dbus.mk | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk index 276009c..a97fc02 100644 --- a/package/dbus/dbus.mk +++ b/package/dbus/dbus.mk @@ -81,7 +81,9 @@ $(DBUS_HOOK_POST_BUILD): $(DBUS_TARGET_BUILD) touch $@ $(DBUS_HOOK_POST_INSTALL): $(DBUS_TARGET_INSTALL_TARGET) +ifneq ($(BR2_HAVE_DEVFILES),y) rm -rf $(TARGET_DIR)/usr/lib/dbus-1.0 +endif 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 -- 1.6.5.7