diff options
author | Michael Büsch <mb@bu3sch.de> | 2010-08-20 14:48:59 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2010-08-20 14:48:59 +0000 |
commit | fde498904f0a4b9fc51902d687b4590c99870e6b (patch) | |
tree | 6a521d0ba4f764663f7359b00033a0fd55ccd5f5 /include/host-build.mk | |
parent | cdff144a647f2674f4c8e83c8ebaaeb4f211b337 (diff) | |
download | mtk-20170518-fde498904f0a4b9fc51902d687b4590c99870e6b.zip mtk-20170518-fde498904f0a4b9fc51902d687b4590c99870e6b.tar.gz mtk-20170518-fde498904f0a4b9fc51902d687b4590c99870e6b.tar.bz2 |
Add an option to default the default build rule to parallel build.
SVN-Revision: 22737
Diffstat (limited to 'include/host-build.mk')
-rw-r--r-- | include/host-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index acb7f6b..4fd6587 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -8,7 +8,7 @@ HOST_BUILD_DIR ?= $(BUILD_DIR_HOST)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION)) HOST_INSTALL_DIR ?= $(HOST_BUILD_DIR)/host-install HOST_BUILD_PARALLEL ?= -HOST_JOBS ?= $(if $(HOST_BUILD_PARALLEL),$(if $(CONFIG_PKG_BUILD_PARALLEL),-j$(CONFIG_PKG_BUILD_JOBS))) +HOST_JOBS ?= $(if $(HOST_BUILD_PARALLEL)$(CONFIG_PKG_DEFAULT_PARALLEL),$(if $(CONFIG_PKG_BUILD_PARALLEL),-j$(CONFIG_PKG_BUILD_JOBS))) include $(INCLUDE_DIR)/host.mk include $(INCLUDE_DIR)/unpack.mk |