wxWidgets/utils/wxPython/buildall

12 lines
132 B
Plaintext
Raw Normal View History

#!/bin/bash
cd src
python ../distrib/build.py $*
if [ "$?" != "0" ]; then
exit 1
fi
cd ../modules
python buildall.py $*
cd ..