Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7478a483
Kaydet (Commit)
7478a483
authored
Ock 30, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added missing run of corresponding 'build' command.
üst
4377a1a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
install_ext.py
Lib/distutils/command/install_ext.py
+3
-0
install_lib.py
Lib/distutils/command/install_lib.py
+3
-0
install_py.py
Lib/distutils/command/install_py.py
+3
-0
No files found.
Lib/distutils/command/install_ext.py
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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