mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
build: workaround for gclient python3 issues
gclient doesn't support Python 3 yet. To workaround that problem, add an enviroment variable to override the Python version used by ./configure. Signed-off-by: Matheus Marchini <mmarchini@netflix.com> PR-URL: https://github.com/nodejs/node/pull/32140 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
c933cbfd74
commit
de8fab95a8
1
configure
vendored
1
configure
vendored
@ -7,6 +7,7 @@
|
||||
# pyenv will alert which shims are available and then will fail the build.
|
||||
_=[ 'exec' '/bin/sh' '-c' '''
|
||||
test ${TRAVIS} && exec python "$0" "$@" # workaround for pyenv on Travis CI
|
||||
test ${FORCE_PYTHON2} && exec python2 "$0" "$@" # workaround for gclient
|
||||
which python3.8 >/dev/null && exec python3.8 "$0" "$@"
|
||||
which python3.7 >/dev/null && exec python3.7 "$0" "$@"
|
||||
which python3.6 >/dev/null && exec python3.6 "$0" "$@"
|
||||
|
Loading…
Reference in New Issue
Block a user