From: Jo-Philipp Wich Date: Thu, 16 Dec 2010 12:08:33 +0000 (+0000) Subject: nufw: don't call autogen.sh X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=54232eb796f674bd8e94d90e849426dea6ad5972;p=openwrt%2Fsvn-archive%2Fpackages.git nufw: don't call autogen.sh SVN-Revision: 24618 --- diff --git a/net/nufw/Makefile b/net/nufw/Makefile index d18097e73..40cf93cee 100644 --- a/net/nufw/Makefile +++ b/net/nufw/Makefile @@ -16,6 +16,7 @@ PKG_SOURCE_URL:=http://www.nufw.org/download/nufw/ PKG_MD5SUM:=7eb500e7ddb3db622dc6c5d43b495c9a PKG_FIXUP:=libtool +PKG_REMOVE_FILES:=autogen.sh aclocal.m4 include $(INCLUDE_DIR)/package.mk @@ -71,7 +72,7 @@ CONFIGURE_ARGS += \ --with-libsasl-prefix="$(STAGING_DIR)/usr/" define Build/Configure - (cd $(PKG_BUILD_DIR) ; ./autogen.sh ) + (cd $(PKG_BUILD_DIR) ; test -x ./autogen.sh && ./autogen.sh || true) $(call Build/Configure/Default) endef