From 622d64cf1daa4a7cc82cf57d35e96b89714d6329 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 4 Dec 1994 20:27:31 +0000 Subject: [PATCH] Comment out iso88591 installation until proper name set will be found (see README.locale_name). Please, anybody tell me language set and countries set described in iso88591 to produce proper name set. --- usr.bin/mklocale/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/usr.bin/mklocale/Makefile b/usr.bin/mklocale/Makefile index 2e2b606b90d..ae67c4b4813 100644 --- a/usr.bin/mklocale/Makefile +++ b/usr.bin/mklocale/Makefile @@ -6,7 +6,8 @@ CFLAGS+=-I. CLEANFILES+=y.tab.h yacc.c lex.c MAN1= mklocale.1 -LOCALES= ja_JP.EUC ru_SU.KOI8-R iso_8859_1 +LOCALES= ja_JP.EUC ru_SU.KOI8-R +#ISO88591LOCALES= LOCALEDIR= ${DESTDIR}/usr/share/locale afterinstall: @@ -16,6 +17,11 @@ 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; \ +# done chown -R ${BINOWN}.${BINGRP} ${LOCALEDIR} .include