Update makefiles to use the autotools stuff put in the template, remove bogus stamp...
[openwrt.git] / include / package.mk
index 01781c7..c28aad8 100644 (file)
@@ -290,7 +290,16 @@ define Build/Prepare
 endef
 
 define Build/Configure/Default
-       (cd $(PKG_BUILD_DIR)/$(3); \
+       (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 ; \
+               [ -e acinclude.m4 ] && touch acinclude.m4 ; \
+               [ -e config.h.in ] && touch config.h.in ; \
+               [ -e configure.ac ] && touch configure.ac ; \
+       );
+       (cd $(PKG_BUILD_DIR)/$(strip $(3)); \
        if [ -x configure ]; then \
                $(TARGET_CONFIGURE_OPTS) \
                CFLAGS="$(TARGET_CFLAGS)" \
This page took 0.026294 seconds and 4 git commands to generate.