1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 19:12:00 +03:00

host-build: add HOST_MAKE_FLAGS similar to package MAKE_FLAGS

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33509 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-09-22 20:10:28 +00:00
parent 1745f44416
commit 3f0adfd3fc

View File

@ -69,6 +69,8 @@ HOST_CONFIGURE_ARGS = \
--localstatedir=$(STAGING_DIR_HOST)/var \
--sbindir=$(STAGING_DIR_HOST)/bin
HOST_MAKE_FLAGS =
HOST_CONFIGURE_CMD = ./configure
ifneq ($(HOST_OS),Darwin)
@ -95,7 +97,9 @@ define Host/Configure
endef
define Host/Compile/Default
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) $(1)
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
$(HOST_MAKE_FLAGS) \
$(1)
endef
define Host/Compile