From: Felix Fietkau Date: Wed, 30 Aug 2006 10:24:11 +0000 (+0000) Subject: only run trap error code in the configure template, if the configure script was not... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fmkresin.git;a=commitdiff_plain;h=7b8d2827f550a24518cd60029d228a301fa1e1e2 only run trap error code in the configure template, if the configure script was not found SVN-Revision: 4715 --- diff --git a/openwrt/include/package.mk b/openwrt/include/package.mk index 311ec35a9c..ce3c4b6a1b 100644 --- a/openwrt/include/package.mk +++ b/openwrt/include/package.mk @@ -263,7 +263,7 @@ endef define Build/Configure/Default @(cd $(PKG_BUILD_DIR)/$(3); \ - [ -x configure ] && \ + [ -x configure ] && { \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ @@ -287,7 +287,7 @@ define Build/Configure/Default --infodir=/usr/info \ $(DISABLE_NLS) \ $(1); \ - true; \ + } || true; \ ) endef