Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7478a483
Commit
7478a483
authored
Jan 30, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing run of corresponding 'build' command.
parent
4377a1a2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
Lib/distutils/command/install_ext.py
Lib/distutils/command/install_ext.py
+3
-0
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_lib.py
+3
-0
Lib/distutils/command/install_py.py
Lib/distutils/command/install_py.py
+3
-0
No files found.
Lib/distutils/command/install_ext.py
View file @
7478a483
...
...
@@ -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
...
...
Lib/distutils/command/install_lib.py
View file @
7478a483
...
...
@@ -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
)
...
...
Lib/distutils/command/install_py.py
View file @
7478a483
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment