diff options
author | Carlos O'Donell <carlos@systemhalted.org> | 2017-10-25 09:06:45 -0700 |
---|---|---|
committer | Carlos O'Donell <carlos@systemhalted.org> | 2017-10-25 09:17:46 -0700 |
commit | 337ff3c501f0e1fadd1036b6fa2754cfbb0c29ea (patch) | |
tree | c5a4c6f74036e55fa718d9742d634a6e328e45f7 /localedata/unicode-gen/Makefile | |
parent | 63da5cd4a097d089033d980c42254c3356fa723f (diff) | |
download | glibc-337ff3c501f0e1fadd1036b6fa2754cfbb0c29ea.tar.gz glibc-337ff3c501f0e1fadd1036b6fa2754cfbb0c29ea.tar.xz glibc-337ff3c501f0e1fadd1036b6fa2754cfbb0c29ea.zip |
localedata: Fix unicode-gen check target.
After the transition to generating a distinct file for Unicode ctype information e.g. i18n_ctype, the check target was left with the wrong target name. This patch fixes the check target and regenerates the files with more information than previously used, filling in the the LC_IDENTIFICATION data. Tested on x86_64 by regenerating from Unicode source files, and running checks. Tested by subsequently rebuilding all locales. No regressions in testsuite. Signed-off-by: Carlos O'Donell <carlos@redhat.com> Reported-by: Rafal Luzynski <digitalfreak@lingonborough.com>
Diffstat (limited to 'localedata/unicode-gen/Makefile')
-rw-r--r-- | localedata/unicode-gen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/localedata/unicode-gen/Makefile b/localedata/unicode-gen/Makefile index 32f4a53504..91c4f891bd 100644 --- a/localedata/unicode-gen/Makefile +++ b/localedata/unicode-gen/Makefile @@ -78,9 +78,9 @@ i18n_ctype-report: ctype_compatibility.py ctype_compatibility_test_cases.py $(PYTHON3) ./ctype_compatibility.py -o ../locales/i18n_ctype \ -n i18n_ctype -a -m > $@ -check-i18n: i18n-report +check-i18n_ctype: i18n_ctype-report @if grep '\(Missing\|Added\) [^0]\|^Number of errors[^=]* = [^0]' \ - i18n-report; \ + i18n_ctype-report; \ then echo manual verification required; false; else true; fi tr_TR: UnicodeData.txt DerivedCoreProperties.txt |