summaryrefslogtreecommitdiff
path: root/openwrt/package/dnsmasq
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-05-19 20:56:21 +0000
committerNicolas Thill <nico@openwrt.org>2005-05-19 20:56:21 +0000
commit12bdcae8f0086559b660b84040aff0518c76486b (patch)
tree91cb5f4dbe685b9f35072e496234f7304714918e /openwrt/package/dnsmasq
parent04972c4c3ff255b48dc1778e71505810f4065a96 (diff)
downloadmtk-20170518-12bdcae8f0086559b660b84040aff0518c76486b.zip
mtk-20170518-12bdcae8f0086559b660b84040aff0518c76486b.tar.gz
mtk-20170518-12bdcae8f0086559b660b84040aff0518c76486b.tar.bz2
Add missing .configured target that caused superfluous package rebuild
SVN-Revision: 965
Diffstat (limited to 'openwrt/package/dnsmasq')
-rw-r--r--openwrt/package/dnsmasq/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile
index c6b7a8a..5d7133f 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):