call autoconf when there's no ./configure script, move it at Build/Prepare stage
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 25 Sep 2008 10:47:39 +0000 (10:47 +0000)
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 25 Sep 2008 10:47:39 +0000 (10:47 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12693 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/bridge-utils/Makefile

index c771ab7..e45bcb0 100644 (file)
@@ -42,11 +42,13 @@ endef
 CONFIGURE_ARGS += \
        --with-linux-headers="$(LINUX_DIR)" \
 
-define Build/Configure
-       (cd $(PKG_BUILD_DIR); \
-       [ "$(PKG_VERSION)" = "1.0.6" ] || ln -s configure.in configure.ac; \
-       autoconf; \
-       ./configure $(CONFIGURE_ARGS) \
+define Build/Prepare
+$(call Build/Prepare/Default)
+       ( cd $(PKG_BUILD_DIR) ; \
+               [ -f ./configure ] || { \
+                       ln -sf configure.in configure.ac ; \
+                       autoconf ; \
+               } \
        )
 endef
 
This page took 0.027619 seconds and 4 git commands to generate.