diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | libc/Android.bp | 5 |
2 files changed, 7 insertions, 5 deletions
@@ -193,10 +193,9 @@ build your device drivers, you shouldn't modify bionic. Instead use ## Updating tzdata -This is fully automated (and these days handled by the libcore team, because -they own icu, and that needs to be updated in sync with bionic): - - 1. Run update-tzdata.py in external/icu/tools/. +This is handled by the libcore team, because they own icu, and that needs to be +updated in sync with bionic). See +[system/timezone/README.android](https://android.googlesource.com/platform/system/timezone/+/master/README.android). ## Verifying changes diff --git a/libc/Android.bp b/libc/Android.bp index 174783fa6..fa1eab6cb 100644 --- a/libc/Android.bp +++ b/libc/Android.bp @@ -1578,7 +1578,10 @@ cc_library { ], }, - required: ["tzdata"], + required: [ + "tzdata", + "tz_version", // Version metadata for tzdata to help debugging. + ], // Leave the symbols in the shared library so that stack unwinders can produce // meaningful name resolution. |