From: nbd Date: Wed, 30 Aug 2006 10:30:14 +0000 (+0000) Subject: use an if block on the whole configure command X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/21842638d0b7851f376ae51b08904d2b1a48d6ca use an if block on the whole configure command git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4717 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/package.mk b/include/package.mk index 8d9050930..9a947f358 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 ] || \ + if [ -x configure ]; then \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ @@ -287,6 +287,7 @@ define Build/Configure/Default --infodir=/usr/info \ $(DISABLE_NLS) \ $(1); \ + fi; \ ) endef