From a0dfa0f0ac8cfb1e46ef2da934e39a8d96b5bf8b Mon Sep 17 00:00:00 2001 From: Jesse Zhang Date: Thu, 6 Jun 2013 06:20:27 +0000 Subject: 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 Signed-off-by: Richard Purdie --- meta/conf/local.conf.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/conf/local.conf.sample') 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. -- cgit 1.2.3-korg