From: Jo-Philipp Wich Date: Wed, 8 Dec 2010 01:19:52 +0000 (+0000) Subject: [include] autotools.mk: allow autogen.sh / autoreconf to fail (for now) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=9cba965b501bbc9100afd53d31011e87ced001c4;hp=9128fd2be5188c574c41f14576c017afa87a3441;ds=sidebyside [include] autotools.mk: allow autogen.sh / autoreconf to fail (for now) SVN-Revision: 24320 --- diff --git a/include/autotools.mk b/include/autotools.mk index 3203604682..df5e85a5f5 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -25,10 +25,10 @@ endef define autoreconf (cd $(PKG_BUILD_DIR); \ if [ -x ./autogen.sh ]; then \ - ./autogen.sh; \ + ./autogen.sh || true; \ elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \ $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ - $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS); \ + $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \ fi \ ); endef