Ver código fonte

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>
Peter Korsgaard 15 anos atrás
pai
commit
b1c416bed6
2 arquivos alterados com 3 adições e 3 exclusões
  1. 1 1
      CHANGES
  2. 2 2
      package/dbus/dbus.mk

+ 1 - 1
CHANGES

@@ -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:
 

+ 2 - 2
package/dbus/dbus.mk

@@ -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)