diff options
author | julian <julian@FreeBSD.org> | 1999-06-05 03:04:03 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1999-06-05 03:04:03 +0000 |
commit | 08a158ed9e3b32854b9fbefa35e4a8b559878533 (patch) | |
tree | 5071aa55f218187d8d3f37eaad8d73a5262f1aea /share/timedef | |
parent | 800c3a618af55e4e9843329ab84410dd3d8c2f05 (diff) | |
download | FreeBSD-src-08a158ed9e3b32854b9fbefa35e4a8b559878533.zip FreeBSD-src-08a158ed9e3b32854b9fbefa35e4a8b559878533.tar.gz |
Support the IANA definition of Shift Jis nameley ja_JP.Shift_JIS
as well as the X11 version ja_JP.SJIS
Diffstat (limited to 'share/timedef')
-rw-r--r-- | share/timedef/data/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/share/timedef/data/Makefile b/share/timedef/data/Makefile index 152eaeb..0cfdc10 100644 --- a/share/timedef/data/Makefile +++ b/share/timedef/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.29 1999/01/21 19:41:37 imp Exp $ +# $Id: Makefile,v 1.30 1999/03/20 11:48:55 foxfair Exp $ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} @@ -41,6 +41,7 @@ LN_LINKS = lt_LN.ASCII lt_LN.ISO_8859-2 NL_LINKS = nl_BE US_LINKS = en_CA GB_LINKS = en_AU +JP_LINKS = ja_JP.Shift_JIS .SUFFIXES: .src .out @@ -110,5 +111,9 @@ afterinstall: ln -fs ../en_GB.ISO_8859-1/LC_TIME \ ${LOCALEDIR}/$$l.DIS_8859-15/LC_TIME; \ done + for l in ${JP_LINKS}; do \ + ln -fs ../ja_JP.SJIS/LC_TIME \ + ${LOCALEDIR}/$$l/LC_TIME; \ + done .include <bsd.prog.mk> |