From: Nicolas Thill Date: Thu, 19 May 2005 20:56:21 +0000 (+0000) Subject: Add missing .configured target that caused superfluous package rebuild X-Git-Tag: reboot~32757 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=12bdcae8f0086559b660b84040aff0518c76486b;p=oweals%2Fopenwrt.git Add missing .configured target that caused superfluous package rebuild SVN-Revision: 965 --- diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile index c6b7a8a9fd..5d7133fd1e 100644 --- a/openwrt/package/dnsmasq/Makefile +++ b/openwrt/package/dnsmasq/Makefile @@ -16,9 +16,13 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,DNSMASQ,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $@ + $(PKG_BUILD_DIR)/.built: - $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \ - BINDIR=/usr/sbin MANDIR=/usr/man -C $(PKG_BUILD_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \ + BINDIR=/usr/sbin MANDIR=/usr/man touch $@ $(IPKG_DNSMASQ): diff --git a/openwrt/package/ebtables/Makefile b/openwrt/package/ebtables/Makefile index 44a175e66a..a928a2dbb1 100644 --- a/openwrt/package/ebtables/Makefile +++ b/openwrt/package/ebtables/Makefile @@ -16,6 +16,9 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,EBTABLES,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $@ + $(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR) \ CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \