diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-11-02 22:44:38 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-11-02 22:44:38 +0000 |
commit | e0c9b034400c796a7367ca368ef37db8ae80b649 (patch) | |
tree | d492a1cdd7fd4544ce41c6a56aebc43ce39abe50 | |
parent | fca85895403cf49a3a05c6637dd60378dae011b5 (diff) | |
download | upstream-e0c9b034400c796a7367ca368ef37db8ae80b649.tar.gz upstream-e0c9b034400c796a7367ca368ef37db8ae80b649.tar.bz2 upstream-e0c9b034400c796a7367ca368ef37db8ae80b649.zip |
Move out some generic code to prevent autotools from re-creating files
SVN-Revision: 5384
-rw-r--r-- | include/package.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk index 5636b0b6a1..8a10569d6c 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) \ |