summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-09-13 13:52:12 (GMT)
committerGreg Ward <gward@python.net>1999-09-13 13:52:12 (GMT)
commit36e68e21b4d9e977374ca3ed8756812a1e5b66a1 (patch)
treeb4429770ff75599f4c27b3560ac0e5db53f49b06 /Lib
parent2adac0a6377ce9779f2db7ba05f3769e30a7a5a6 (diff)
downloadcpython-36e68e21b4d9e977374ca3ed8756812a1e5b66a1.zip
cpython-36e68e21b4d9e977374ca3ed8756812a1e5b66a1.tar.gz
cpython-36e68e21b4d9e977374ca3ed8756812a1e5b66a1.tar.bz2
Now run 'build_ext'.
Default platform-specific build directory changed to 'build/platlib'.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index d0e939e..187dddc 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -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