1998-10-05 23:44:53 +04:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
#
|
2004-05-28 00:33:31 +04:00
|
|
|
# $NetBSD: tzcode2netbsd,v 1.5 2004/05/27 20:33:31 kleink Exp $
|
1998-10-05 23:44:53 +04:00
|
|
|
#
|
|
|
|
# Convert an extracted tzcode distribution into the format suitable
|
|
|
|
# for importing it into the NetBSD source tree.
|
2004-05-28 00:33:31 +04:00
|
|
|
# Last updated for: tzcode2004a.
|
1998-10-05 23:44:53 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
NOIMPORT="Makefile
|
2003-12-20 01:25:42 +03:00
|
|
|
date.1 date.1.txt date.c
|
1998-10-05 23:44:53 +04:00
|
|
|
gccdiffs
|
2004-05-28 00:33:31 +04:00
|
|
|
itca.jpg
|
1998-10-05 23:44:53 +04:00
|
|
|
logwtmp.c
|
2003-12-20 01:25:42 +03:00
|
|
|
newctime.3.txt
|
|
|
|
newstrftime.3 newstrftime.3.txt
|
|
|
|
newtzset.3.txt
|
|
|
|
time2posix.3.txt
|
|
|
|
tzfile.5.txt
|
|
|
|
tzselect.8.txt
|
|
|
|
usno1988 usno1989 usno1989a usno1995 usno1997 usno1998
|
|
|
|
zdump.8.txt
|
|
|
|
zic.8.txt"
|
1998-10-05 23:44:53 +04:00
|
|
|
|
|
|
|
NEWTONORMAL="ctime.3
|
|
|
|
tzset.3"
|
|
|
|
|
|
|
|
rm -f ${NOIMPORT}
|
|
|
|
|
|
|
|
for f in ${NEWTONORMAL}; do
|
|
|
|
mv new${f} ${f};
|
|
|
|
done
|