diff options
author | ache <ache@FreeBSD.org> | 1994-12-04 21:11:29 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-12-04 21:11:29 +0000 |
commit | d6880ea2c9ed26d571327ea8c09e9b525c1a9501 (patch) | |
tree | 2a1c8b4dcfeeb36b4ccf6d6cd6f4bb03d3d27a63 /usr.bin | |
parent | 4b415e359d1f9fce3b77055a66f5789e92500e90 (diff) | |
download | FreeBSD-src-d6880ea2c9ed26d571327ea8c09e9b525c1a9501.zip FreeBSD-src-d6880ea2c9ed26d571327ea8c09e9b525c1a9501.tar.gz |
Dig out full locale names set for ISO8859-1 (great success!)
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mklocale/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/mklocale/Makefile b/usr.bin/mklocale/Makefile index 1e5801e..44e305b 100644 --- a/usr.bin/mklocale/Makefile +++ b/usr.bin/mklocale/Makefile @@ -5,9 +5,11 @@ SRCS= yacc.c lex.c CFLAGS+=-I. CLEANFILES+=y.tab.h yacc.c lex.c MAN1= mklocale.1 - -LOCALES= ja_JP.EUC ru_SU.KOI8-R -ISO88591LOCALES= lt_LN.ISO8859-1 # need more names here +ISO88591= lt_LN.ISO8859-1 +ISO88591NAMES= da_DK de_DE de_AT de_CH en_GB en_AU en_CA en_US \ + es_ES fi_FI fr_FR fr_BE fr_CA fr_CH is_IS it_IT it_CH \ + nl_NL nl_BE no_NO pt_PT sv_SE +LOCALES= ja_JP.EUC ru_SU.KOI8-R ${ISO88591} LOCALEDIR= ${DESTDIR}/usr/share/locale afterinstall: @@ -17,10 +19,8 @@ afterinstall: mklocale -o ${LOCALEDIR}/$$locale/LC_CTYPE ${.CURDIR}/data/$$locale; \ chmod ${BINMODE} ${LOCALEDIR}/$$locale; \ done - for locale in ${ISO88591LOCALES}; do \ - mkdir -p ${LOCALEDIR}/$$locale || true; \ - mklocale -o ${LOCALEDIR}/$$locale/LC_CTYPE ${.CURDIR}/data/iso_8859_1; \ - chmod ${BINMODE} ${LOCALEDIR}/$$locale; \ + cd ${LOCALEDIR}; for locale in ${ISO88591NAMES}; do \ + ln -s ${ISO88591} $$locale.ISO8859-1; \ done chown -R ${BINOWN}.${BINGRP} ${LOCALEDIR} |