Commit 36e68e21 authored by Greg Ward's avatar Greg Ward

Now run 'build_ext'.

Default platform-specific build directory changed to 'build/platlib'.
parent 2adac0a6
......@@ -30,7 +30,7 @@ class Build (Command):
if self.libdir is None:
self.libdir = os.path.join (self.basedir, 'lib')
if self.platdir is None:
self.platdir = os.path.join (self.basedir, 'plat')
self.platdir = os.path.join (self.basedir, 'platlib')
def run (self):
......@@ -44,6 +44,6 @@ class Build (Command):
self.run_peer ('build_py')
# And now 'build_ext'
#self.run_peer ('build_ext')
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