Kaydet (Commit) 7478a483 authored tarafından Greg Ward's avatar Greg Ward

Added missing run of corresponding 'build' command.

üst 4377a1a2
......@@ -27,6 +27,9 @@ class InstallExt (Command):
def run (self):
# Make sure we have built all extension modules first
self.run_peer ('build_ext')
# Dump the entire "build/platlib" directory (or whatever it really
# is; "build/platlib" is the default) to the installation target
# (eg. "/usr/local/lib/python1.5/site-packages"). Note that
......
......@@ -46,6 +46,9 @@ class InstallPy (Command):
def run (self):
# Make sure we have "built" all pure Python modules first
self.run_peer ('build_py')
# Dump entire contents of the build directory to the installation
# directory (that's the beauty of having a build directory!)
outfiles = self.copy_tree (self.build_dir, self.install_dir)
......
......@@ -46,6 +46,9 @@ class InstallPy (Command):
def run (self):
# Make sure we have "built" all pure Python modules first
self.run_peer ('build_py')
# Dump entire contents of the build directory to the installation
# directory (that's the beauty of having a build directory!)
outfiles = self.copy_tree (self.build_dir, self.install_dir)
......
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