summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2014-09-30 20:38:55 +0100
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-10-04 17:48:17 +0200
commit2a61d1eefacce1132746df6eab3f6a29f95003d7 (patch)
treec5b097230310180d85fdd11fa43d0b484c6957f1 /android
parent2e30c62e61d2f2d478db52ddbc8c7a340b5e5c31 (diff)
android: package C* fonts as well for interop.
Change-Id: I49c6c4bf0b2ddfb403612ccad90a41e8ae525427
Diffstat (limited to 'android')
-rw-r--r--android/Bootstrap/Makefile.shared6
1 files changed, 5 insertions, 1 deletions
diff --git a/android/Bootstrap/Makefile.shared b/android/Bootstrap/Makefile.shared
index 7bc96150da5f..5dd9f4a39abb 100644
--- a/android/Bootstrap/Makefile.shared
+++ b/android/Bootstrap/Makefile.shared
@@ -196,7 +196,11 @@ copy-stuff:
# vcl/generic/fontmanager/helper.cxx: psp::getFontPath(). UserInstallation is
# set to the app's data dir above.
mkdir -p assets/gz.unpack/user/fonts
- for F in $(INSTDIR)/share/fonts/truetype/Liberation*.ttf $(INSTDIR)/share/fonts/truetype/Gen*.ttf $(INSTDIR)/share/fonts/truetype/opens___.ttf; do \
+ for F in $(INSTDIR)/share/fonts/truetype/Liberation*.ttf \
+ $(INSTDIR)/share/fonts/truetype/Caladea-*.ttf \
+ $(INSTDIR)/share/fonts/truetype/Carlito-*.ttf \
+ $(INSTDIR)/share/fonts/truetype/Gen*.ttf \
+ $(INSTDIR)/share/fonts/truetype/opens___.ttf; do \
gzip -9 <$$F >assets/gz.unpack/user/fonts/`basename $$F`; \
done
#