diff options
| author | Nicolas Thill <nico@openwrt.org> | 2005-08-09 22:20:34 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2005-08-09 22:20:34 +0000 |
| commit | 6c4216c48d37b3ec822f5f71dd0c44512924a554 (patch) | |
| tree | db766ba646de4e4f7f130a884c694196249aa807 | |
| parent | 015bc4d71ffcfd895d3dc8573a1081a722b442a3 (diff) | |
| download | upstream-6c4216c48d37b3ec822f5f71dd0c44512924a554.tar.gz upstream-6c4216c48d37b3ec822f5f71dd0c44512924a554.tar.bz2 upstream-6c4216c48d37b3ec822f5f71dd0c44512924a554.zip | |
Add missing .configured target that caused superfluous package rebuild
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1590 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/package/ncurses/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openwrt/package/ncurses/Makefile b/openwrt/package/ncurses/Makefile index cdcf9feb6d2..4e0f9ba0b92 100644 --- a/openwrt/package/ncurses/Makefile +++ b/openwrt/package/ncurses/Makefile @@ -25,7 +25,10 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,LIBNCURSES,libncurses,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.prepared +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared + touch $@ + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ |
