diff --git a/LCS/Tools/src/lofarinit.csh b/LCS/Tools/src/lofarinit.csh index d311e40e81d0561ad3232809571225fbecc8dd05..9428a62ee0ab643ddaa233a8cf270bf551053428 100644 --- a/LCS/Tools/src/lofarinit.csh +++ b/LCS/Tools/src/lofarinit.csh @@ -29,10 +29,11 @@ set a_root = . #filled in by install # Get python version. -set a_pyv=`python --version 2>&1` -set a_pyvv=`echo $a_pyv | sed -e "s/Python /([0.9]\.[0-9]\).*/\1/"` -if test "$a_pyv" = "$a_pyvv" then - set a_pyvv=2.5 +set a_pyv=`python -V |& cat --` +set a_pyvv=`echo $a_pyv | sed -e "s/Python \([0-9]\.[0-9]\).*/\1/"` +# Fall-back: if python cannot be found assume Python 2.4 +if ("$a_pyv" == "$a_pyvv") then + set a_pyvv=2.4 endif # Only modify path variables if $a_root is an existing directory. @@ -79,7 +80,7 @@ else if (! $?PYTHONPATH) then setenv PYTHONPATH $a_pyt else - setenv PYTHONPATH $a_pyt:$PYTHONPATH + setenv PYTHONPATH ${a_pyt}:$PYTHONPATH endif # Create a .glishrc.post in the HOME directory to append diff --git a/LCS/Tools/src/lofarinit.sh b/LCS/Tools/src/lofarinit.sh index 100082e5cb7e44ae36a5c86d8e396ddda65d2671..b83fa30d29cb19edcd24c2132f556e323b555241 100644 --- a/LCS/Tools/src/lofarinit.sh +++ b/LCS/Tools/src/lofarinit.sh @@ -29,8 +29,9 @@ lfr_root=. #filled in by install # Get python version. -a_pyv=`python --version 2>&1` +a_pyv=`python -V 2>&1` a_pyvv=`echo $a_pyv | sed -e "s/Python \([0-9]\.[0-9]\).*/\1/"` +# Fall-back: if python cannot be found assume Python 2.4 if test "$a_pyv" = "$a_pyvv"; then a_pyvv=2.4 fi