Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/zoneinfo Change comments and variables to reduce diffe...



details:   https://anonhg.NetBSD.org/src/rev/330e402c6cc5
branches:  trunk
changeset: 325492:330e402c6cc5
user:      apb <apb%NetBSD.org@localhost>
date:      Thu Dec 26 20:19:17 2013 +0000

description:
Change comments and variables to reduce differences with upstream.
No change in the installed files.

diffstat:

 share/zoneinfo/Makefile |  26 ++++++++++++++------------
 1 files changed, 14 insertions(+), 12 deletions(-)

diffs (59 lines):

diff -r 8982151c76a3 -r 330e402c6cc5 share/zoneinfo/Makefile
--- a/share/zoneinfo/Makefile   Thu Dec 26 20:14:38 2013 +0000
+++ b/share/zoneinfo/Makefile   Thu Dec 26 20:19:17 2013 +0000
@@ -1,12 +1,7 @@
-#      $NetBSD: Makefile,v 1.45 2013/12/26 17:09:39 apb Exp $
+#      $NetBSD: Makefile,v 1.46 2013/12/26 20:19:17 apb Exp $
 
 .include <bsd.own.mk>
 
-# Change the line below for your time zone (after finding the zone you want in
-# the time zone files, or adding it to a time zone file).
-# Alternately, if you discover you've got the wrong time zone, you can just
-#      zic -l rightzone
-
 # If you want something other than Eastern United States time as a template
 # for handling POSIX-style time zone environment variables,
 # change the line below (after finding the zone you want in the
@@ -17,9 +12,16 @@
 # summer time.)
 # Alternately, if you discover you've got the wrong time zone, you can just
 #      zic -p rightzone
+# to correct things.
+# Use the command
+#      make zonenames
+# to get a list of the values you can use for POSIXRULES.
+# If you want POSIX compatibility, use "America/New_York".
 
-POSIXRULES=    US/Pacific
+POSIXRULES=    America/New_York
 
+# "Compiled" time zone information is placed in the "TZDIR" directory
+# (and subdirectories).
 # Use an absolute path name for TZDIR unless you're just testing the software.
 # Note: ${DESTDIR} is prepended to this for the actual copy.
 
@@ -27,7 +29,7 @@
 
 # If you always want time values interpreted as "seconds since the epoch
 # (not counting leap seconds)", use
-#      REDO=           posix_only
+#      REDO=           posix_only
 # below.  If you always want right time values interpreted as "seconds since
 # the epoch" (counting leap seconds)", use
 #      REDO=           right_only
@@ -44,10 +46,10 @@
 # Since "." may not be in PATH...
 YEARISTYPE=    "${HOST_SH} ${.CURDIR}/yearistype.sh"
 
-YDATA=         africa antarctica asia australasia \
-               europe northamerica southamerica pacificnew etcetera factory \
-               backward
-NDATA=         systemv
+PRIMARY_YDATA= africa antarctica asia australasia \
+               europe northamerica southamerica
+YDATA=         $(PRIMARY_YDATA) pacificnew etcetera backward
+NDATA=         systemv factory
 TDATA=         $(YDATA) $(NDATA)
 TABDATA=       iso3166.tab zone.tab
 DATA=          $(YDATA) $(NDATA) leapseconds # yearistype.sh



Home | Main Index | Thread Index | Old Index