X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f17924e7389618db0ac792f2b53e69d7e4bb4ec..f97c9b5bf2452c73434eb548e70115ac7ca60a83:/utils/wxPython/buildall diff --git a/utils/wxPython/buildall b/utils/wxPython/buildall index 7db44d38dc..26870e3f48 100755 --- a/utils/wxPython/buildall +++ b/utils/wxPython/buildall @@ -1,11 +1,11 @@ #!/bin/bash cd src -build $* -if [ $? != 0 ]; then +python ../distrib/build.py $* +if [ "$?" != "0" ]; then exit 1 fi cd ../modules -buildall.py $* +python buildall.py $* cd ..