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
dee36f28
Kaydet (Commit)
dee36f28
authored
Kas 05, 2010
tarafından
Petr Mladek
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix ooinstall to create the installation dir
Cwd::realpath does not work if the path does not exist
üst
00d479a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ooinstall
solenv/bin/ooinstall
+3
-1
No files found.
solenv/bin/ooinstall
Dosyayı görüntüle @
dee36f28
...
...
@@ -8,6 +8,7 @@
# 3. When packaging (called from package-ooo), to install to DESTDIR
use
File::
Find
;
use
File::
Path
qw(mkpath)
;
use
Cwd
;
$path
=
''
;
...
...
@@ -38,10 +39,11 @@ $ENV{'PYTHONPATH'} = "$ENV{'SRC_ROOT'}/instsetoo_native/$ENV{'INPATH'}/bin:$ENV{
for
$arg
(
@ARGV
)
{
if
(
$arg
eq
'-l'
)
{
$do_link
=
1
;
}
elsif
(
$arg
eq
'-h'
||
$arg
eq
'--help'
)
{
$help
=
1
;
}
else
{
# Cwd::realpath does not work if the path does not exist
mkpath
(
$arg
)
unless
-
d
$arg
;
$path
=
Cwd::
realpath
(
$arg
);
}
}
...
...
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