mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
17 lines
246 B
Bash
Executable File
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 $?
|