diff options
author | bapt <bapt@FreeBSD.org> | 2016-06-20 06:45:42 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-06-20 06:45:42 +0000 |
commit | 6d8d86e4625a04be931b3fa4102f3c40e2539e47 (patch) | |
tree | 174e642f4529ffec6d4f7019db978bb65fbc3106 /share/numericdef/Makefile | |
parent | c6f6894768f297ac39bb24bdaf19167ba7def897 (diff) | |
download | FreeBSD-src-6d8d86e4625a04be931b3fa4102f3c40e2539e47.zip FreeBSD-src-6d8d86e4625a04be931b3fa4102f3c40e2539e47.tar.gz |
Fix generation of locales with multiple variants
Serbian locales have triple components to represent the 2 variations of the
locale: Latin and Cyrillic. Previously the tools generatic the locale were
appending both definitions instead of differentiating them.
Reported by: ache
Approved by: re (gjb)
Diffstat (limited to 'share/numericdef/Makefile')
-rw-r--r-- | share/numericdef/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile index 8e1e1ece..1205c12 100644 --- a/share/numericdef/Makefile +++ b/share/numericdef/Makefile @@ -18,7 +18,6 @@ LOCALES+= hi_IN.UTF-8 LOCALES+= hy_AM.UTF-8 LOCALES+= it_CH.UTF-8 LOCALES+= ru_RU.CP866 -LOCALES+= sr_Latn_RS.UTF-8 LOCALES+= tr_TR.UTF-8 LOCALES+= uk_UA.ISO8859-5 LOCALES+= uk_UA.KOI8-U @@ -133,6 +132,10 @@ SAME+= ar_SA.UTF-8 ar_JO.UTF-8 SAME+= ar_SA.UTF-8 ar_EG.UTF-8 SAME+= ar_SA.UTF-8 ar_AE.UTF-8 SAME+= tr_TR.UTF-8 tr_TR.ISO8859-9 +SAME+= tr_TR.UTF-8 sr_Latn_RS.UTF-8 +SAME+= tr_TR.UTF-8 sr_Latn_RS.ISO8859-2 +SAME+= tr_TR.UTF-8 sr_Cyrl_RS.UTF-8 +SAME+= tr_TR.UTF-8 sr_Cyrl_RS.ISO8859-5 SAME+= tr_TR.UTF-8 sl_SI.UTF-8 SAME+= tr_TR.UTF-8 sl_SI.ISO8859-2 SAME+= tr_TR.UTF-8 ro_RO.UTF-8 @@ -199,9 +202,6 @@ SAME+= fr_CH.ISO8859-15 fr_CH.ISO8859-1 SAME+= hi_IN.UTF-8 hi_IN.ISCII-DEV SAME+= hy_AM.UTF-8 hy_AM.ARMSCII-8 SAME+= uk_UA.KOI8-U ru_RU.KOI8-R -SAME+= sr_Latn_RS.UTF-8 sr_Latn_RS.ISO8859-2 -SAME+= sr_Latn_RS.UTF-8 sr_Cyrl_RS.UTF-8 -SAME+= sr_Latn_RS.UTF-8 sr_Cyrl_RS.ISO8859-5 SAME+= ko_KR.eucKR ko_KR.CP949 # legacy (same charset) FILES= ${LOCALES:S/$/.out/} |