X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=edksetup.sh;fp=edksetup.sh;h=bfa54ddf708883e18abb9ed51f8c4bdb11ae5f07;hp=06f95f4b9c278c154c43420770875057d7769526;hb=d8238aaf862a55eec77040844c71a02c71294e86;hpb=fd2d74007bfae2bcc6da47457189ed9b7cdd106d diff --git a/edksetup.sh b/edksetup.sh index 06f95f4b9c..bfa54ddf70 100755 --- a/edksetup.sh +++ b/edksetup.sh @@ -115,11 +115,14 @@ function SetupPython() { if [ $PYTHON3_ENABLE ] && [ $PYTHON3_ENABLE == TRUE ] then - for python in $(which python3) + if [ $origin_version ];then + origin_version= + fi + for python in $(whereis python3) do python=$(echo $python | grep "[[:digit:]]$" || true) python_version=${python##*python} - if [ -z "${python_version}" ];then + if [ -z "${python_version}" ] || (! command -v $python >/dev/null 2>&1);then continue fi if [ -z $origin_version ];then @@ -137,14 +140,17 @@ function SetupPython() if [ -z $PYTHON3_ENABLE ] || [ $PYTHON3_ENABLE != TRUE ] then - for python in $(which python2) + if [ $origin_version ];then + origin_version= + fi + for python in $(whereis python2) do python=$(echo $python | grep "[[:digit:]]$" || true) python_version=${python##*python} - if [ -z "${python_version}" ];then + if [ -z "${python_version}" ] || (! command -v $python >/dev/null 2>&1);then continue fi - if [ -z $origin_version ] || [ $origin_version -ge 3 ] + if [ -z $origin_version ] then origin_version=$python_version export PYTHON=$python