]> granicus.if.org Git - python/commitdiff
Now run 'build_ext'.
authorGreg Ward <gward@python.net>
Mon, 13 Sep 1999 13:52:12 +0000 (13:52 +0000)
committerGreg Ward <gward@python.net>
Mon, 13 Sep 1999 13:52:12 +0000 (13:52 +0000)
Default platform-specific build directory changed to 'build/platlib'.

Lib/distutils/command/build.py

index d0e939e9b6444a8bbe5f60d7a5c2fbd62eff4c9f..187dddc0b7cd01ee463d42bbc47c049b43f74c8b 100644 (file)
@@ -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