Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Oct 1998 19:12:32 +1000 (EST)
From:      Stephen McKay <syssgm@dtir.qld.gov.au>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   bin/8302: LC_TIME for en_AU.ISO_8859-1 is wrong
Message-ID:  <199810130912.TAA26732@nymph.dtir.qld.gov.au>

next in thread | raw e-mail | index | archive | help

>Number:         8302
>Category:       bin
>Synopsis:       LC_TIME for en_AU.ISO_8859-1 is wrong
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 13 02:20:01 PDT 1998
>Last-Modified:
>Originator:     Stephen McKay
>Organization:
none
>Release:        FreeBSD 3.0-CURRENT i386
>Environment:

Fairly recent -current.  Dual PPro 200.

>Description:

/usr/share/locale/en_AU.ISO_8859-1/LC_TIME is linked to the US LC_TIME.
The Australian view of time is closer to the British view.  So it should
link to en_GB.ISO_8859-1/LC_TIME.

>How-To-Repeat:

Inspect /usr/share/local/en_AU.ISO_8859-1.

>Fix:

This patch should work, but I can't test installworld on any -current box
at this time.  Sorry.

This patch applies to -stable as well.

Index: Makefile
===================================================================
RCS file: /cvs/src/share/timedef/data/Makefile,v
retrieving revision 1.27
diff -u -r1.27 Makefile
--- Makefile	1998/08/10 09:49:42	1.27
+++ Makefile	1998/10/13 09:01:05
@@ -36,7 +36,8 @@
 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
 
@@ -72,6 +73,10 @@
 	done
 	for l in ${US_LINKS}; do \
 		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
 

Stephen.
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810130912.TAA26732>