host-build: add HOST_MAKE_FLAGS similar to package MAKE_FLAGS
SVN-Revision: 33509
This commit is contained in:
parent
28665d55cd
commit
1c108d3318
1 changed files with 5 additions and 1 deletions
|
@ -69,6 +69,8 @@ HOST_CONFIGURE_ARGS = \
|
||||||
--localstatedir=$(STAGING_DIR_HOST)/var \
|
--localstatedir=$(STAGING_DIR_HOST)/var \
|
||||||
--sbindir=$(STAGING_DIR_HOST)/bin
|
--sbindir=$(STAGING_DIR_HOST)/bin
|
||||||
|
|
||||||
|
HOST_MAKE_FLAGS =
|
||||||
|
|
||||||
HOST_CONFIGURE_CMD = ./configure
|
HOST_CONFIGURE_CMD = ./configure
|
||||||
|
|
||||||
ifneq ($(HOST_OS),Darwin)
|
ifneq ($(HOST_OS),Darwin)
|
||||||
|
@ -95,7 +97,9 @@ define Host/Configure
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Compile/Default
|
define Host/Compile/Default
|
||||||
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) $(1)
|
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
|
||||||
|
$(HOST_MAKE_FLAGS) \
|
||||||
|
$(1)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Compile
|
define Host/Compile
|
||||||
|
|
Loading…
Reference in a new issue