Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add DL_DIR, SSTATE_DIR, and PARALLEL_MAKE to passthrough env vars #22

Open
wants to merge 1 commit into
base: scarthgap
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 22 additions & 1 deletion setup-env
Expand Up @@ -22,7 +22,28 @@ test ! -d "${TOPDIR}/openembedded-core/scripts" || export PATH="${TOPDIR}/openem
# used in bitbake wrapper for pseudodone location
export BUILDDIR="${TOPDIR}"

export BB_ENV_PASSTHROUGH_ADDITIONS="MACHINE DISTRO http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS GIT_PROXY_COMMAND PSEUDO_DISABLED PSEUDO_BUILD WEBOS_DISTRO_BUILD_ID"
export BB_ENV_PASSTHROUGH_ADDITIONS="\
ALL_PROXY \
all_proxy \
ftp_proxy \
GIT_PROXY_COMMAND \
http_proxy \
https_proxy \
no_proxy \
BB_NUMBER_THREADS \
BB_SRCREV_POLICY \
DISTRO \
DL_DIR \
MACHINE \
PARALLEL_MAKE \
PSEUDO_BUILD \
PSEUDO_DISABLED \
SDKMACHINE \
SSH_AGENT_PID \
SSH_AUTH_SOCK \
SSTATE_DIR \
WEBOS_DISTRO_BUILD_ID \
"
export LD_LIBRARY_PATH=
export LANG=C
export MACHINE
Expand Down