diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-25 10:47:39 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-25 10:47:39 +0000 |
commit | b855e3ddfedd7bee4bce401f4e1b1d61f877b15d (patch) | |
tree | e4d9d14b3f63b5d3e8efec2fbe02d449a5d9a08f | |
parent | 4e88f567d783a87a6a7bfdbdc069b30e0af953de (diff) |
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
-rw-r--r-- | package/bridge-utils/Makefile | 12 |
1 files 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 |