Make.py fails with python 2.5

Make.py fails with python 2.5

python Make.py -o linux -v -p user-sph -cc mpi -fft none -jpg no -a file mpi
Traceback (most recent call last):
  File "Make.py", line 1936, in ?
    i = makeclasses.index(switch)
AttributeError: 'tuple' object has no attribute 'index'

I think the reason is that in python 2.5 tuple does not have index().
See the changelog
https://docs.python.org/2/library/stdtypes.html#typesseq

ok - I guess you need to use a more modern Python, e.g. 2.7.

Steve