dbus: fix rebuild for boards where /var/lib isn't a symlink

Based on patch by Sagaert Johan <sagaert.johan@skynet.be>

Dbus rebuilds fails if /var/lib/dbus is a symlink (which it will be),
and the existing workaround only worked if /var/lib is a symlink to
/tmp, which isn't always the case.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2009-11-25 10:22:42 +01:00
parent 6b6bdaed76
commit b1c416bed6
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
2009.11, Not released yet:
Updated/fixed packages: gvfs
Updated/fixed packages: dbus, gvfs
2009.11-rc1, Released November 23rd, 2009:

View File

@ -51,9 +51,9 @@ endif
$(eval $(call AUTOTARGETS,package,dbus))
# fix rebuild if /var/lib is a symlink to /tmp
# fix rebuild (dbus makefile errors out if /var/lib/dbus is a symlink)
$(DBUS_HOOK_POST_BUILD): $(DBUS_TARGET_BUILD)
rm -rf /tmp/dbus
rm -rf $(TARGET_DIR)/var/lib/dbus
touch $@
$(DBUS_HOOK_POST_INSTALL): $(DBUS_TARGET_INSTALL_TARGET)