Commit 02e1c562 authored by Greg Ward's avatar Greg Ward

Only run build_py if we have pure Python modules, and build_ext if we

have extension modules.
parent dbb96253
......@@ -40,10 +40,14 @@ class Build (Command):
# For now, "build" means "build_py" then "build_ext". (Eventually
# it should also build documentation.)
# Invoke the 'build_py' command
# Invoke the 'build_py' command to "build" pure Python modules
# (ie. copy 'em into the build tree)
if self.distribution.packages or self.distribution.py_modules:
self.run_peer ('build_py')
# And now 'build_ext'
# And now 'build_ext' -- compile extension modules and put them
# into the build tree
if self.distribution.ext_modules:
self.run_peer ('build_ext')
# end class Build
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment