From 3f60f620e40add659d0b8563cc66a6bdb8252cec Mon Sep 17 00:00:00 2001 From: Nicolas Thill 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 SVN-Revision: 12693 --- 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 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 -- 2.30.2