Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
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ç
LibreOffice
core
Commits
c2ece9e2
Kaydet (Commit)
c2ece9e2
authored
Şub 16, 2012
tarafından
Tim Retout
Kaydeden (comit)
Michael Meeks
Şub 17, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move global starttime into installer::logger
üst
f2808e15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
globals.pm
solenv/bin/modules/installer/globals.pm
+0
-2
logger.pm
solenv/bin/modules/installer/logger.pm
+4
-2
No files found.
solenv/bin/modules/installer/globals.pm
Dosyayı görüntüle @
c2ece9e2
...
...
@@ -431,8 +431,6 @@ BEGIN
$postprocess_standardepm
=
0
;
$mergemodules_analyzed
=
0
;
$starttime
=
""
;
@solarispatchscripts
=
(
"checkinstall"
,
"copyright"
,
"patch_checkinstall"
,
"patch_postinstall"
,
"postinstall"
,
"preinstall"
,
"i.none"
);
@solarispatchscriptsforextensions
=
(
"checkinstall"
,
"copyright"
,
"patch_checkinstall"
,
"patch_postinstall_extensions"
,
"postinstall_extensions"
,
"preinstall"
,
"i.none"
);
@solarispatchfiles
=
(
".diPatch"
,
"patchinfo"
);
...
...
solenv/bin/modules/installer/logger.pm
Dosyayı görüntüle @
c2ece9e2
...
...
@@ -51,6 +51,8 @@ our @EXPORT_OK = qw(
print_error
)
;
my
$starttime
;
####################################################
# Including header files into the logfile
####################################################
...
...
@@ -207,7 +209,7 @@ sub savedebug
sub
starttime
{
$
installer::globals::
starttime
=
time
();
$starttime
=
time
();
}
###############################################################
...
...
@@ -258,7 +260,7 @@ sub _convert_timestring
sub
_get_time_string
{
my
$currenttime
=
time
();
$currenttime
=
$currenttime
-
$
installer::globals::
starttime
;
$currenttime
=
$currenttime
-
$starttime
;
$currenttime
=
_convert_timestring
(
$currenttime
);
$currenttime
=
localtime
()
.
" \("
.
$currenttime
.
"\)\n"
;
return
$currenttime
;
...
...
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