Add automake-1.4 host tool dependency to linux-atm (#910)
[openwrt.git] / include / package.mk
index 1a424e2..bada11f 100644 (file)
@@ -289,17 +289,21 @@ define Build/Prepare
   $(call Build/Prepare/Default,)
 endef
 
-define Build/Configure/Default
+define Build/Configure/Touch
        (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 ; \
-               [ -e stamp-h.in ] && touch stamp-h.in ; \
-       );
+               touch configure.in ; \
+               touch aclocal.m4 ; \
+               touch Makefile.in ; \
+               touch configure ; \
+               touch acinclude.m4 ; \
+               touch config.h.in ; \
+               touch configure.ac ; \
+               touch stamp-h.in ; \
+        );
+endef
+
+define Build/Configure/Default
+       $(call Build/Configure/Touch)
        (cd $(PKG_BUILD_DIR)/$(strip $(3)); \
        if [ -x configure ]; then \
                $(TARGET_CONFIGURE_OPTS) \
This page took 0.026215 seconds and 4 git commands to generate.