summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-11-02 22:44:38 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-11-02 22:44:38 +0000
commitaae7cc96574a0e1f4985036025d8faafb32064fc (patch)
treec9287c1bc28bcb8d25b7ef69634b74736615a45c /include
parentd277f89894771b51a0902d7428d9a31ad3af2208 (diff)
Move out some generic code to prevent autotools from re-creating files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5384 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r--include/package.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk
index 5636b0b6a..8a10569d6 100644
--- a/include/package.mk
+++ b/include/package.mk
@@ -290,6 +290,12 @@ define Build/Prepare
endef
define Build/Configure/Default
+ (cd $(PKG_BUILD_DIR) ; \
+ [ -e configure.in ] && touch configure.in ; \
+ [ -e aclocal.m4 ] && touch aclocal.m4 ; \
+ [ -e Makefile.in ] && touch Makefile.in ; \
+ [ -e configure ] && touch configure ; \
+ );
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
if [ -x configure ]; then \
$(TARGET_CONFIGURE_OPTS) \