From: Greg Ward Date: Sun, 30 Jan 2000 15:07:56 +0000 (+0000) Subject: Added missing run of corresponding 'build' command. X-Git-Tag: v1.6a1~526 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7478a4832a29a7179a299570ab8bb5148e57dcf0;p=python Added missing run of corresponding 'build' command. --- diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py index 3fb756c6a1..b5673d235a 100644 --- a/Lib/distutils/command/install_ext.py +++ b/Lib/distutils/command/install_ext.py @@ -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 diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 35deaa812f..50939a3431 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -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) diff --git a/Lib/distutils/command/install_py.py b/Lib/distutils/command/install_py.py index 35deaa812f..50939a3431 100644 --- a/Lib/distutils/command/install_py.py +++ b/Lib/distutils/command/install_py.py @@ -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)