Home | History | Annotate | Line # | Download | only in time
tzcode2netbsd revision 1.4
      1 #! /bin/sh
      2 
      3 #
      4 # $NetBSD: tzcode2netbsd,v 1.4 2003/12/19 23:52:44 kleink Exp $
      5 #
      6 # Convert an extracted tzcode distribution into the format suitable
      7 # for importing it into the NetBSD source tree.
      8 # Last updated for: tzcode2003e.
      9 # 
     10 
     11 NOIMPORT="Makefile
     12 	date.1 date.1.txt date.c
     13 	gccdiffs
     14 	logwtmp.c
     15 	newctime.3.txt
     16 	newstrftime.3 newstrftime.3.txt
     17 	newtzset.3.txt
     18 	time2posix.3.txt
     19 	tzfile.5.txt
     20 	tzselect.8.txt
     21 	usno1988 usno1989 usno1989a usno1995 usno1997 usno1998
     22 	zdump.8.txt
     23 	zic.8.txt"
     24 
     25 NEWTONORMAL="ctime.3
     26 	tzset.3"
     27 
     28 rm -f ${NOIMPORT}
     29 
     30 for f in ${NEWTONORMAL}; do
     31 	mv new${f} ${f};
     32 done
     33