X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7874bf5430d47317bebf5c68cd7d4a2d964dee95..c368d904fc27d35ae1e533155e2154dc496432e4:/wxPython/contrib/buildall.py diff --git a/wxPython/contrib/buildall.py b/wxPython/contrib/buildall.py deleted file mode 100755 index 561f3bbac1..0000000000 --- a/wxPython/contrib/buildall.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python -#---------------------------------------------------------------------------- -# Name: buildall.py -# Purpose: Invokes the build script for all modules defined in -# MODULELIST -# -# Author: Robin Dunn -# -# Created: 18-Aug-1999 -# RCS-ID: $Id$ -# Copyright: (c) 1999 by Total Control Software -# Licence: wxWindows license -#---------------------------------------------------------------------------- - -import sys, os -sys.path.insert(0, '../distrib') -import build - -MODULELIST = ['glcanvas', 'ogl', 'stc', ] -sys.argv[0] = '../../distrib/build.py' - - -for module in MODULELIST: - cwd = os.getcwd() - print "**** Building %s ****" % module - err = build.main([sys.argv[0], '-C', module] + sys.argv[1:]) - os.chdir(cwd) - if err: - break - -sys.exit(err)