mirror of
https://github.com/python/cpython.git
synced 2025-12-09 10:37:17 +00:00
Now run 'build_ext'.
Default platform-specific build directory changed to 'build/platlib'.
This commit is contained in:
parent
2adac0a637
commit
36e68e21b4
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ class Build (Command):
|
||||||
if self.libdir is None:
|
if self.libdir is None:
|
||||||
self.libdir = os.path.join (self.basedir, 'lib')
|
self.libdir = os.path.join (self.basedir, 'lib')
|
||||||
if self.platdir is None:
|
if self.platdir is None:
|
||||||
self.platdir = os.path.join (self.basedir, 'plat')
|
self.platdir = os.path.join (self.basedir, 'platlib')
|
||||||
|
|
||||||
|
|
||||||
def run (self):
|
def run (self):
|
||||||
|
|
@ -44,6 +44,6 @@ class Build (Command):
|
||||||
self.run_peer ('build_py')
|
self.run_peer ('build_py')
|
||||||
|
|
||||||
# And now 'build_ext'
|
# And now 'build_ext'
|
||||||
#self.run_peer ('build_ext')
|
self.run_peer ('build_ext')
|
||||||
|
|
||||||
# end class Build
|
# end class Build
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue