summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-05-19 20:49:45 +0000
committerNicolas Thill <nico@openwrt.org>2005-05-19 20:49:45 +0000
commitc5725a0578e6edfda5a2890e5c0be7015f615fb3 (patch)
treec85bb3269a2f9c55828f6969f9c3354f3d60ed8f
parent0198017fbc790b83e3c9d98cc37d44043395d301 (diff)
downloadmtk-20170518-c5725a0578e6edfda5a2890e5c0be7015f615fb3.zip
mtk-20170518-c5725a0578e6edfda5a2890e5c0be7015f615fb3.tar.gz
mtk-20170518-c5725a0578e6edfda5a2890e5c0be7015f615fb3.tar.bz2
Add missing .configured target that caused superfluous package rebuild
SVN-Revision: 963
-rw-r--r--openwrt/package/arptables/Makefile10
-rw-r--r--openwrt/package/bwm/Makefile3
2 files changed, 8 insertions, 5 deletions
diff --git a/openwrt/package/arptables/Makefile b/openwrt/package/arptables/Makefile
index 018d8af..ceb7450 100644
--- a/openwrt/package/arptables/Makefile
+++ b/openwrt/package/arptables/Makefile
@@ -1,8 +1,5 @@
-#############################################################
-#
-# arptables
-#
-#############################################################
+# $Id$
+
include $(TOPDIR)/rules.mk
PKG_NAME:=arptables
@@ -18,6 +15,9 @@ include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,ARPTABLES,arptables,$(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 \
diff --git a/openwrt/package/bwm/Makefile b/openwrt/package/bwm/Makefile
index 74f25c2..1d615ec 100644
--- a/openwrt/package/bwm/Makefile
+++ b/openwrt/package/bwm/Makefile
@@ -14,6 +14,9 @@ include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,BWM,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+$(PKG_BUILD_DIR)/.configured:
+ touch $@
+
$(PKG_BUILD_DIR)/.built:
$(TARGET_CC) $(TARGET_CFLAGS) $(PKG_BUILD_DIR)/bwm.c -o $(PKG_BUILD_DIR)/bwm
touch $@