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
cde69cdb
Kaydet (Commit)
cde69cdb
authored
Eyl 05, 2014
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Keep Mac/build-installer.py in sync across branches (affects 2.7 only).
üst
1aca6e1a
1ff32a91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
build-installer.py
Mac/BuildScript/build-installer.py
+5
-11
No files found.
Mac/BuildScript/build-installer.py
Dosyayı görüntüle @
cde69cdb
...
...
@@ -615,8 +615,7 @@ def checkEnvironment():
# Ensure ws have access to hg and to sphinx-build.
# You may have to create links in /usr/bin for them.
runCommand
(
'hg --version'
)
if
getVersionTuple
()
>=
(
3
,
4
):
runCommand
(
'sphinx-build --version'
)
runCommand
(
'sphinx-build --version'
)
def
parseOptions
(
args
=
None
):
"""
...
...
@@ -929,15 +928,10 @@ def buildPythonDocs():
docdir
=
os
.
path
.
join
(
rootDir
,
'pydocs'
)
curDir
=
os
.
getcwd
()
os
.
chdir
(
buildDir
)
# The Doc build changed for 3.4 (technically, for 3.4.1)
if
getVersionTuple
()
<
(
3
,
4
):
# This step does an svn checkout of sphinx and its dependencies
runCommand
(
'make update'
)
runCommand
(
"make html PYTHON='
%
s'"
%
os
.
path
.
abspath
(
sys
.
executable
))
else
:
runCommand
(
'make clean'
)
# Assume sphinx-build is on our PATH, checked in checkEnvironment
runCommand
(
'make html'
)
# The Doc build changed for 3.4 (technically, for 3.4.1) and for 2.7.9
runCommand
(
'make clean'
)
# Assume sphinx-build is on our PATH, checked in checkEnvironment
runCommand
(
'make html'
)
os
.
chdir
(
curDir
)
if
not
os
.
path
.
exists
(
docdir
):
os
.
mkdir
(
docdir
)
...
...
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