From: Nabil Ghodbane Date: Mon, 2 Jan 2023 13:17:40 +0000 (+0100) Subject: spns #32335: some projects still rely on Python 2. Implement a switch based on Python... X-Git-Tag: V9_11_0~131 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c3cf552ffc38514486ebb8558ea1ac840413b4d4;hp=eca7ecb1662390ba681a630fdd80244434059b38;p=tools%2Fsat_salome.git spns #32335: some projects still rely on Python 2. Implement a switch based on Python major version number --- diff --git a/products/compil_scripts/omniORB.sh b/products/compil_scripts/omniORB.sh index 475fd5c..632712f 100755 --- a/products/compil_scripts/omniORB.sh +++ b/products/compil_scripts/omniORB.sh @@ -47,6 +47,8 @@ if version_ge $VERSION "4.1" ; then if [ $? -ne 0 ]; then echo ERROR: Failed to extract major Python version - assuming Python version equal to 3... pyVersionMajor=python3 + elif [ "${pyVersionMajor}" == "python2" ]; then + pyVersionMajor=python fi echo INFO: Python version major: ${pyVersionMajor} sed -e "s%#\!.*python[0-9]*%#\!/usr/bin/env ${pyVersionMajor}%" omniidl > _omniidl