diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-08-30 10:24:11 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-08-30 10:24:11 +0000 |
commit | eac6330602f08ef254803e17c7bde2ed22f5c7b8 (patch) | |
tree | 884d2d0e48e1c6505ec93d2f8311d02fdad0b7c0 /include | |
parent | 91637acf54cc52ec9c03cbd195af08e9ae8e0739 (diff) |
only run trap error code in the configure template, if the configure script was not found
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4715 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/package.mk b/include/package.mk index 311ec35a9c..ce3c4b6a1b 100644 --- a/include/package.mk +++ b/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 |