From b855e3ddfedd7bee4bce401f4e1b1d61f877b15d Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 25 Sep 2008 10:47:39 +0000 Subject: [PATCH] call autoconf when there's no ./configure script, move it at Build/Prepare stage git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12693 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/bridge-utils/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/package/bridge-utils/Makefile b/package/bridge-utils/Makefile index c771ab7cb..e45bcb0f0 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 -- 2.35.1