diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-01-11 18:42:07 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-12 10:49:07 +0100 |
commit | c5138f0f2beb60a594ecdb8baf3bcb7c3e8baec6 (patch) | |
tree | ffe0c68d36bfd0cf80acab32dc1fab98617c66b1 /Meta/CMake | |
parent | 05ed8d17385e6965fd66c42758d332bd7af741c0 (diff) | |
download | serenity-c5138f0f2beb60a594ecdb8baf3bcb7c3e8baec6.zip |
LibUnicode: Parse number system digits from the CLDR
We had a hard-coded table of number system digits copied from ECMA-402.
Turns out these digits are in the CLDR, so let's parse the digits from
there instead of hard-coding them.
Diffstat (limited to 'Meta/CMake')
-rw-r--r-- | Meta/CMake/unicode_data.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/CMake/unicode_data.cmake b/Meta/CMake/unicode_data.cmake index ef3153b417..95cc46315a 100644 --- a/Meta/CMake/unicode_data.cmake +++ b/Meta/CMake/unicode_data.cmake @@ -181,7 +181,7 @@ if (ENABLE_UNICODE_DATABASE_DOWNLOAD) "${UNICODE_META_TARGET_PREFIX}" "${UNICODE_NUMBER_FORMAT_HEADER}" "${UNICODE_NUMBER_FORMAT_IMPLEMENTATION}" - arguments -n "${CLDR_NUMBERS_PATH}" -u "${CLDR_UNITS_PATH}" + arguments -r "${CLDR_CORE_PATH}" -n "${CLDR_NUMBERS_PATH}" -u "${CLDR_UNITS_PATH}" ) set(UNICODE_DATA_SOURCES |