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
62ffc078
Kaydet (Commit)
62ffc078
authored
Ock 19, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pass unquoted string to stat.
üst
773feaf5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
make_buildinfo.c
PCbuild/make_buildinfo.c
+3
-3
No files found.
PCbuild/make_buildinfo.c
Dosyayı görüntüle @
62ffc078
...
@@ -37,11 +37,11 @@ int make_buildinfo2()
...
@@ -37,11 +37,11 @@ int make_buildinfo2()
type
!=
REG_SZ
)
type
!=
REG_SZ
)
/* Registry corrupted */
/* Registry corrupted */
return
0
;
return
0
;
strcat
(
command
,
"bin
\\
subwcrev.exe
\"
"
);
strcat
(
command
,
"bin
\\
subwcrev.exe"
);
if
(
_stat
(
command
,
&
st
)
<
0
)
if
(
_stat
(
command
+
1
,
&
st
)
<
0
)
/* subwcrev.exe not part of the release */
/* subwcrev.exe not part of the release */
return
0
;
return
0
;
strcat
(
command
,
" .. ..
\\
Modules
\\
getbuildinfo.c getbuildinfo2.c"
);
strcat
(
command
,
"
\"
.. ..
\\
Modules
\\
getbuildinfo.c getbuildinfo2.c"
);
puts
(
command
);
fflush
(
stdout
);
puts
(
command
);
fflush
(
stdout
);
if
(
system
(
command
)
<
0
)
if
(
system
(
command
)
<
0
)
return
0
;
return
0
;
...
...
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