From 7365ddaee7047b4fb5c38b9875d6e6f22514bc74 Mon Sep 17 00:00:00 2001 From: Jesse Zhang Date: Thu, 6 Jun 2013 06:20:27 +0000 Subject: [PATCH] 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-yocto/conf/site.conf.sample | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-yocto/conf/site.conf.sample b/meta-yocto/conf/site.conf.sample index b2d01d0c590..c551e8fb0c4 100644 --- a/meta-yocto/conf/site.conf.sample +++ b/meta-yocto/conf/site.conf.sample @@ -19,10 +19,10 @@ SCONF_VERSION = "1" # To use git with a proxy, you must use an external git proxy command, such as # the one provided by scripts/oe-git-proxy.sh. To use this script, copy it to # your PATH and uncomment the following: -#GIT_PROXY_COMMAND="oe-git-proxy" -#ALL_PROXY="socks://socks.example.com:1080" +#GIT_PROXY_COMMAND ?= "oe-git-proxy" +#ALL_PROXY ?= "socks://socks.example.com:1080" #or -#ALL_PROXY="https://proxy.example.com:8080" +#ALL_PROXY ?= "https://proxy.example.com:8080" # If you wish to use certain hosts without the proxy, specify them in NO_PROXY. # See the script for details on syntax. -- 2.47.3