Files
Phoenix/b
2010-12-27 18:48:31 +00:00

17 lines
246 B
Bash
Executable File

#!/bin/bash
##set -o xtrace
PYVER=2.6
PYVER2=26
if [ "$OSTYPE" = "cygwin" ]; then
$TOOLS/python$PYVER2/python.exe -u build.py "$@"
else
PATH=/usr/local/bin:$PATH
PYTHON=`which python$PYVER`
$PYTHON -u build.py "$@"
fi
exit $?