From: Ulf Samuelsson Date: Sat, 31 Jan 2009 12:02:40 +0000 (-0000) Subject: dbus dependencies needs to be ready before ./configure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8bf5071cf3d64b6e7a00c435433517ea52c2430d;p=buildroot.git dbus dependencies needs to be ready before ./configure --- diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk index c8ee401056..8f1ac6d17d 100644 --- a/package/dbus/dbus.mk +++ b/package/dbus/dbus.mk @@ -28,7 +28,7 @@ $(DBUS_DIR)/.unpacked: $(DL_DIR)/$(DBUS_SOURCE) $(DBUS_CAT) $(DL_DIR)/$(DBUS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - touch $@ -$(DBUS_DIR)/.configured: $(DBUS_DIR)/.unpacked +$(DBUS_DIR)/.configured: $(DBUS_DIR)/.unpacked $(DBUS_XML_DEP) (cd $(DBUS_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_ARGS) \ @@ -113,3 +113,9 @@ dbus-dirclean: ifeq ($(BR2_PACKAGE_DBUS),y) TARGETS+=dbus endif + +dbus-status: + @echo BR2_DBUS_EXPAT=$(BR2_DBUS_EXPAT) + @echo DBUS_XML=$(DBUS_XML) + @echo DBUS_XML_DEP=$(DBUS_XML_DEP) +