mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 19:52:27 +02:00
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
This commit is contained in:
parent
c9b650c269
commit
21842638d0
@ -263,7 +263,7 @@ endef
|
|||||||
|
|
||||||
define Build/Configure/Default
|
define Build/Configure/Default
|
||||||
@(cd $(PKG_BUILD_DIR)/$(3); \
|
@(cd $(PKG_BUILD_DIR)/$(3); \
|
||||||
[ \! -x configure ] || \
|
if [ -x configure ]; then \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
@ -287,6 +287,7 @@ define Build/Configure/Default
|
|||||||
--infodir=/usr/info \
|
--infodir=/usr/info \
|
||||||
$(DISABLE_NLS) \
|
$(DISABLE_NLS) \
|
||||||
$(1); \
|
$(1); \
|
||||||
|
fi; \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user