[BACK]Return to tzcode2netbsd CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / time

Annotation of src/lib/libc/time/tzcode2netbsd, Revision 1.5

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

CVSweb <webmaster@jp.NetBSD.org>