diff options
author | wollman <wollman@FreeBSD.org> | 2001-02-09 21:17:39 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2001-02-09 21:17:39 +0000 |
commit | df3a31abf203592e9464bf0d24079937c13507c3 (patch) | |
tree | f92a434e8e4b69a5806df6d5b211758086068b58 /share/numericdef | |
parent | dbc6187cacde7ea408dcd8ae52fe60005ddaac11 (diff) | |
download | FreeBSD-src-df3a31abf203592e9464bf0d24079937c13507c3.zip FreeBSD-src-df3a31abf203592e9464bf0d24079937c13507c3.tar.gz |
Add links:
en_CA, en_GB => en_US
en_AU, en_NZ => en_GB
fr_CA, fr_CH => fr_FR
There are separate links for `GB English' and `US English' because I
anticipate users of the former to potentially want a thousands_sep of
" " (to match modern British style) rather than ",".
XXX What about en_IE? ISO_8859-15?
Diffstat (limited to 'share/numericdef')
-rw-r--r-- | share/numericdef/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile index d786f22..897b3a8 100644 --- a/share/numericdef/Makefile +++ b/share/numericdef/Makefile @@ -16,6 +16,12 @@ LOCALES= af_ZA.ISO_8859-1 \ sv_SE.ISO_8859-1 LOCALEDIR= ${DESTDIR}/usr/share/locale +USENGLISH= en_US.ISO_8859-1 +USENGLISHLINKS= en_CA.ISO_8859-1 en_GB.ISO_8859-1 +GBENGLISH= en_GB.ISO_8859-1 +GBENGLISHLINKS= en_AU.ISO_8859-1 en_NZ.ISO_8859-1 +FRENCH= fr_FR.ISO_8859-1 +FRENCHLINKS= fr_CA.ISO_8859-1 fr_CH.ISO_8859-1 .SUFFIXES: .src .out @@ -29,5 +35,14 @@ afterinstall: ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \ ${LOCALEDIR}/${lang}/LC_NUMERIC .endfor +.for link in ${USENGLISHLINKS} + ln -sf ../${USENGLISH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC +.endfor +.for link in ${GBENGLISHLINKS} + ln -sf ../${GBENGLISH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC +.endfor +.for link in ${FRENCHLINKS} + ln -sf ../${FRENCH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC +.endfor .include <bsd.prog.mk> |