summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-19 20:56:21 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-19 20:56:21 +0000
commita32025054e88ff22da23e407ddb2753727fc00f8 (patch)
tree91cb5f4dbe685b9f35072e496234f7304714918e
parentd59555fe1a07762a91b3211192cfa042b01f72c0 (diff)
Add missing .configured target that caused superfluous package rebuild
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@965 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/package/dnsmasq/Makefile8
-rw-r--r--openwrt/package/ebtables/Makefile3
2 files changed, 9 insertions, 2 deletions
diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile
index c6b7a8a9f..5d7133fd1 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 44a175e66..a928a2dbb 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 \