From: Jörg Krause Date: Wed, 14 Mar 2018 20:18:35 +0000 (+0100) Subject: docs/manual: pass PARALLEL_JOBS to NINJA_OPTS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f7479b538a3e1548172ba256001ebd96f1e7076c;p=buildroot.git docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Ninja understands the `-j` option which defines how many jobs are run in parallel. Signed-off-by: Jörg Krause Acked-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/docs/manual/adding-packages-meson.txt b/docs/manual/adding-packages-meson.txt index 65a0f6a962..f3b4b30e48 100644 --- a/docs/manual/adding-packages-meson.txt +++ b/docs/manual/adding-packages-meson.txt @@ -35,7 +35,7 @@ package. Let's start with an example: 18: --buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \ 19: --cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf 20: -21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v) +21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS) 22: 23: ifeq ($(BR2_PACKAGE_BAZ),y) 24: FOO_CONF_OPTS += -Dbaz