diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-18 14:49:08 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-18 14:49:08 +0000 |
commit | aa3c1b36deb5584a14798c430fd6e6686e6551fc (patch) | |
tree | 00c0fb14616d6a91772acc02a691fc1e1087dfa6 /openwrt/package/ntpclient/Makefile | |
parent | 511e4139ef5be114cc4938645eec760bd64bb9ea (diff) | |
download | mtk-20170518-aa3c1b36deb5584a14798c430fd6e6686e6551fc.zip mtk-20170518-aa3c1b36deb5584a14798c430fd6e6686e6551fc.tar.gz mtk-20170518-aa3c1b36deb5584a14798c430fd6e6686e6551fc.tar.bz2 |
Add missing .configured target causing superfluous package rebuild, touch .built too
SVN-Revision: 935
Diffstat (limited to 'openwrt/package/ntpclient/Makefile')
-rw-r--r-- | openwrt/package/ntpclient/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/package/ntpclient/Makefile b/openwrt/package/ntpclient/Makefile index 02c0637..b83dd93 100644 --- a/openwrt/package/ntpclient/Makefile +++ b/openwrt/package/ntpclient/Makefile @@ -15,9 +15,13 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,NTPCLIENT,ntpclient,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $(PKG_BUILD_DIR)/.configured + $(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR) \ CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" + touch $(PKG_BUILD_DIR)/.built $(IPKG_NTPCLIENT): install -d -m0755 $(IDIR_NTPCLIENT)/etc/init.d |