X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/7102aaa3a3dffb3fc767f4d1552395b6cddb5000..d84ff5d6093899dfec2e6291618feeb992481a99:/package/bridge-utils/Makefile diff --git a/package/bridge-utils/Makefile b/package/bridge-utils/Makefile index c771ab7cb..35b883884 100644 --- a/package/bridge-utils/Makefile +++ b/package/bridge-utils/Makefile @@ -4,7 +4,6 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk @@ -42,11 +41,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