From: Nicolas Thill Date: Thu, 25 Sep 2008 10:47:39 +0000 (+0000) Subject: call autoconf when there's no ./configure script, move it at Build/Prepare stage X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=3f60f620e40add659d0b8563cc66a6bdb8252cec call autoconf when there's no ./configure script, move it at Build/Prepare stage SVN-Revision: 12693 --- diff --git a/package/bridge-utils/Makefile b/package/bridge-utils/Makefile index c771ab7cb5..e45bcb0f0b 100644 --- a/package/bridge-utils/Makefile +++ b/package/bridge-utils/Makefile @@ -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