12345678910 |
- #120605 precise puppy: executable is 'python2.7', but 'python' missing...
- if [ ! -e usr/bin/python ];then
- PYTHONEXE="`find usr/bin -mindepth 1 -maxdepth 1 -type f -name 'python2.[3-9]' | head -n 1`"
- if [ "$PYTHONEXE" ];then
- BASEPYTHONEXE="`basename $PYTHONEXE`"
- ln -s $BASEPYTHONEXE usr/bin/python
- fi
- fi
|