File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1616# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818#
19- # $Id: setup.py,v 1.60 2004-04-16 10:43:51 richard Exp $
19+ # $Id: setup.py,v 1.61 2004-04-17 01:47:15 richard Exp $
2020
2121from distutils .core import setup , Extension
2222from distutils .util import get_platform
2323from distutils .command .build_scripts import build_scripts
24+ from distutils .command .build import build
2425
2526import sys , os , string
2627from glob import glob
@@ -149,6 +150,11 @@ def check_manifest():
149150 sys .exit (1 )
150151
151152
153+ class build_roundup (build ):
154+ def run (self ):
155+ check_manifest ()
156+ build .run (self )
157+
152158#############################################################################
153159### Main setup stuff
154160#############################################################################
@@ -260,6 +266,7 @@ def main():
260266 # Override certain command classes with our own ones
261267 cmdclass = {
262268 'build_scripts' : build_scripts_roundup ,
269+ 'build' : build_roundup ,
263270 },
264271 scripts = roundup_scripts ,
265272
You can’t perform that action at this time.
0 commit comments