diff options
author | Raph Levien <raph@google.com> | 2014-08-11 08:48:41 -0700 |
---|---|---|
committer | Raph Levien <raph@google.com> | 2014-08-11 08:54:51 -0700 |
commit | 24ce0538618026aedd7e31bf401e53c9cb2589af (patch) | |
tree | b371ec13d9b51033e32016d4e03e6971af85cd13 | |
parent | 1584609f422c338ade65b8b4078b434ba3a81253 (diff) | |
download | frameworks_base-24ce0538618026aedd7e31bf401e53c9cb2589af.zip frameworks_base-24ce0538618026aedd7e31bf401e53c9cb2589af.tar.gz frameworks_base-24ce0538618026aedd7e31bf401e53c9cb2589af.tar.bz2 |
Copy fonts.xml to /system/etc
This patch actually copies the new font config file to the /system/etc
directory on the device, where frameworks and apps will be able to read
it.
Bug: 14538154
Change-Id: I53a932210763b718f469d80cc92816edf4e5b14e
-rw-r--r-- | data/fonts/fonts.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/fonts/fonts.mk b/data/fonts/fonts.mk index 2ff2010..f285ebe 100644 --- a/data/fonts/fonts.mk +++ b/data/fonts/fonts.mk @@ -16,7 +16,8 @@ PRODUCT_COPY_FILES := \ frameworks/base/data/fonts/system_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/system_fonts.xml \ - frameworks/base/data/fonts/fallback_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fallback_fonts.xml + frameworks/base/data/fonts/fallback_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fallback_fonts.xml \ + frameworks/base/data/fonts/fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fonts.xml PRODUCT_PACKAGES := \ DroidSansFallback.ttf \ |