diff options
author | ache <ache@FreeBSD.org> | 1998-10-13 20:20:27 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-10-13 20:20:27 +0000 |
commit | 9a83e473e2d79b503444c2b316e7498f259d9263 (patch) | |
tree | b048f48bea39bc5a5f1a19a7ebcef0a6e1ded51d | |
parent | 05e05b3c64ac43e018dc6fec7191a4721881b25d (diff) | |
download | FreeBSD-src-9a83e473e2d79b503444c2b316e7498f259d9263.zip FreeBSD-src-9a83e473e2d79b503444c2b316e7498f259d9263.tar.gz |
Make Australian time GB-like
PR: 8302
Submitted by: Stephen McKay <syssgm@dtir.qld.gov.au>
-rw-r--r-- | share/timedef/data/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/share/timedef/data/Makefile b/share/timedef/data/Makefile index 55b56f5..80e5f2f 100644 --- a/share/timedef/data/Makefile +++ b/share/timedef/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.26 1998/08/07 16:51:10 ache Exp $ +# $Id: Makefile,v 1.27 1998/08/10 09:49:42 phk Exp $ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} @@ -36,7 +36,8 @@ FR_LINKS = fr_BE fr_CA fr_CH IT_LINKS = it_CH LN_LINKS = lt_LN.ASCII lt_LN.ISO_8859-2 NL_LINKS = nl_BE -US_LINKS = en_AU en_CA +US_LINKS = en_CA +GB_LINKS = en_AU .SUFFIXES: .src .out @@ -74,5 +75,9 @@ afterinstall: ln -fs ../en_US.ISO_8859-1/LC_TIME \ ${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \ done + for l in ${GB_LINKS}; do \ + ln -fs ../en_GB.ISO_8859-1/LC_TIME \ + ${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \ + done .include <bsd.prog.mk> |