aboutsummaryrefslogtreecommitdiffstats
path: root/meta/conf/local.conf.sample
diff options
context:
space:
mode:
authorJesse Zhang <sen.zhang@windriver.com>2013-06-06 06:20:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-17 16:27:43 +0100
commita0dfa0f0ac8cfb1e46ef2da934e39a8d96b5bf8b (patch)
tree94e69e8e853ebc72d8d2d269a8720e1f7728346e /meta/conf/local.conf.sample
parent166313ca2edd05f7d3472ba23ba6f44ae12a7d12 (diff)
downloadopenembedded-core-a0dfa0f0ac8cfb1e46ef2da934e39a8d96b5bf8b.tar.gz
local.conf.sample: use ?= to assign BB_ENV_EXTRAWHITE variables
Use ?= so that the BB_ENV_EXTRAWHITE variables can be overridden from the environment. [YOCTO #4367] Signed-off-by: Jesse Zhang <sen.zhang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/local.conf.sample')
-rw-r--r--meta/conf/local.conf.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
index 85205c57ad..2b078d081e 100644
--- a/meta/conf/local.conf.sample
+++ b/meta/conf/local.conf.sample
@@ -17,12 +17,12 @@
# These two options control how much parallelism BitBake should use. The first
# option determines how many tasks bitbake should run in parallel:
#
-#BB_NUMBER_THREADS = "4"
+#BB_NUMBER_THREADS ?= "4"
#
# The second option controls how many processes make should run in parallel when
# running compile tasks:
#
-#PARALLEL_MAKE = "-j 4"
+#PARALLEL_MAKE ?= "-j 4"
#
# For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
# be appropriate for example.