From: Joshua Watt Date: Tue, 15 May 2018 14:52:29 +0000 (-0500) Subject: toolchain-shar-extract.sh: Preserve ICECC_PATH X-Git-Tag: uninative-2.1~146 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c245ab9bee536c7b6af026a5eda02ae0695567b3;p=openembedded-core.git toolchain-shar-extract.sh: Preserve ICECC_PATH ICECC_PATH wasn't being preserved in the environment when it was reinitialized. This prevented toolchain installs from being able to use icecream by setting ICECC_PATH when icecc isn't in $PATH Signed-off-by: Joshua Watt Signed-off-by: Ross Burton --- diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index f7ab43066f..9eabd62630 100644 --- a/meta/files/toolchain-shar-extract.sh +++ b/meta/files/toolchain-shar-extract.sh @@ -3,6 +3,7 @@ [ -z "$ENVCLEANED" ] && exec /usr/bin/env -i ENVCLEANED=1 HOME="$HOME" \ LC_ALL=en_US.UTF-8 \ TERM=$TERM \ + ICECC_PATH="$ICECC_PATH" \ http_proxy="$http_proxy" https_proxy="$https_proxy" ftp_proxy="$ftp_proxy" \ no_proxy="$no_proxy" all_proxy="$all_proxy" GIT_PROXY_COMMAND="$GIT_PROXY_COMMAND" "$0" "$@" [ -f /etc/environment ] && . /etc/environment