WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / configure
blob09c80b7fe194404f3cd01b8e692727eec45a9070
1 #! /bin/sh
4 inpath()
6 IFS=:
7 for d in $PATH
8 do
9 if [ -x $d/$1 ]; then
10 return 0
12 done
13 return 1
16 for p in python2.7 python2.6 python2.5 python2.4 python2 python
18 if ( inpath $p ); then
19 exec $p `dirname $0`/make/configure.py "$@"
20 exit 0
22 done
24 echo "ERROR: no suitable version of python found."
25 exit 1