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
1d6d1eef
Kaydet (Commit)
1d6d1eef
authored
Eyl 05, 2018
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Workaround for file name case inconsistency
Change-Id: Ia13dc01f86e51064658d5ad9a996c6bd555cbeef
üst
e3bac83b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
gbuild.mk
solenv/gbuild/gbuild.mk
+13
-1
No files found.
solenv/gbuild/gbuild.mk
Dosyayı görüntüle @
1d6d1eef
...
@@ -166,7 +166,19 @@ $(eval $(call gb_Helper_collect_knownlibs))
...
@@ -166,7 +166,19 @@ $(eval $(call gb_Helper_collect_knownlibs))
gb_Library_DLLPOSTFIX := lo
gb_Library_DLLPOSTFIX := lo
# Include platform/cpu/compiler specific config/definitions
# Include platform/cpu/compiler specific config/definitions
include $(GBUILDDIR)/platform/$(OS)_$(CPUNAME)_$(COM).mk
# Work around inconsistency in case of $(OS) being "IOS" (all
# upper-case) vs. the file being included here having the name
# iOS_*_*.mk (lower-case 'i'). This went unnoticed until now when I
# happen to build for iOS on a case-sensitive file system.
ifeq ($(OS),IOS)
gbuildplatformosname=iOS
else
gbuildplatformosname=$(OS)
endif
include $(GBUILDDIR)/platform/$(gbuildplatformosname)_$(CPUNAME)_$(COM).mk
# this is optional
# this is optional
include $(SRCDIR)/RepositoryFixes.mk
include $(SRCDIR)/RepositoryFixes.mk
...
...
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