diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-01-28 16:49:34 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:22 +0000 |
commit | 59791d1f49591354c31c652af6c7c482461a878c (patch) | |
tree | 1c8f06d114f7259200536435a3fa9ac061ce419f | |
parent | abd81585fad176efea16c908a51d99aa9897b907 (diff) | |
download | poky-59791d1f49591354c31c652af6c7c482461a878c.tar.gz |
toolchain-shar-extract.sh: Add proxy variable to new env.
Extensible SDK needs to do network operations so add proxies to
environment.
(From OE-Core rev: 6d65712660a314916ebee5abc9990404216dbe00)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/files/toolchain-shar-extract.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index d844771de0..12d39c3893 100644 --- a/meta/files/toolchain-shar-extract.sh +++ b/meta/files/toolchain-shar-extract.sh | |||
@@ -1,6 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | [ -z "$ENVCLEANED" ] && exec /usr/bin/env -i ENVCLEANED=1 HOME="$HOME" "$0" "$@" | 3 | [ -z "$ENVCLEANED" ] && exec /usr/bin/env -i ENVCLEANED=1 HOME="$HOME" \ |
4 | http_proxy="$http_proxy" https_proxy="$https_proxy" ftp_proxy="$ftp_proxy" \ | ||
5 | no_proxy="$no_proxy" GIT_PROXY_COMMAND="$GIT_PROXY_COMMAND" "$0" "$@" | ||
4 | [ -f /etc/environment ] && . /etc/environment | 6 | [ -f /etc/environment ] && . /etc/environment |
5 | export PATH=`echo "$PATH" | sed -e 's/:\.//' -e 's/::/:/'` | 7 | export PATH=`echo "$PATH" | sed -e 's/:\.//' -e 's/::/:/'` |
6 | 8 | ||