diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-18 14:47:16 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-18 14:47:16 +0000 |
commit | 511e4139ef5be114cc4938645eec760bd64bb9ea (patch) | |
tree | 0b585c5d7bd55b28b4bf2a8d446dc3cb5f3f306f | |
parent | 21afb81133c6efe3e0b3afed6438cf622760cc61 (diff) | |
download | mtk-20170518-511e4139ef5be114cc4938645eec760bd64bb9ea.zip mtk-20170518-511e4139ef5be114cc4938645eec760bd64bb9ea.tar.gz mtk-20170518-511e4139ef5be114cc4938645eec760bd64bb9ea.tar.bz2 |
Add missing .configured target causing superfluous package rebuild
SVN-Revision: 934
-rw-r--r-- | openwrt/package/iptables/Makefile | 3 | ||||
-rw-r--r-- | openwrt/package/matrixssl/Makefile | 3 | ||||
-rw-r--r-- | openwrt/package/microperl/Makefile | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/openwrt/package/iptables/Makefile b/openwrt/package/iptables/Makefile index 29dcf6c..3e84c4c 100644 --- a/openwrt/package/iptables/Makefile +++ b/openwrt/package/iptables/Makefile @@ -22,6 +22,9 @@ $(eval $(call PKG_template,IPTABLES_EXTRA,iptables-extra,$(PKG_VERSION)-$(PKG_RE $(eval $(call PKG_template,IPTABLES_UTILS,iptables-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,IP6TABLES,ip6tables,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $(PKG_BUILD_DIR)/.configured + $(PKG_BUILD_DIR)/.built: chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test mkdir -p $(PKG_INSTALL_DIR) diff --git a/openwrt/package/matrixssl/Makefile b/openwrt/package/matrixssl/Makefile index 0b08e22..356be60 100644 --- a/openwrt/package/matrixssl/Makefile +++ b/openwrt/package/matrixssl/Makefile @@ -19,6 +19,9 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,LIBMATRIXSSL,libmatrixssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $(PKG_BUILD_DIR)/.configured + $(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR)/src \ $(TARGET_CONFIGURE_OPTS) \ diff --git a/openwrt/package/microperl/Makefile b/openwrt/package/microperl/Makefile index 3cf92d9..5a8a818 100644 --- a/openwrt/package/microperl/Makefile +++ b/openwrt/package/microperl/Makefile @@ -20,6 +20,9 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,MICROPERL,microperl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $(PKG_BUILD_DIR)/.configured + $(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR) -f Makefile.micro \ CC="$(TARGET_CC)" OPTIMIZE="$(TARGET_CFLAGS)" |