1998-10-05 23:44:53 +04:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
#
|
2000-12-12 18:36:49 +03:00
|
|
|
# $NetBSD: tzcode2netbsd,v 1.2 2000/12/12 15:36:49 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.
|
2000-12-12 18:36:49 +03:00
|
|
|
# Last updated for: tzcode2000g.
|
1998-10-05 23:44:53 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
NOIMPORT="Makefile
|
|
|
|
date.1 date.c
|
|
|
|
gccdiffs
|
|
|
|
logwtmp.c
|
2000-12-12 18:36:49 +03:00
|
|
|
newstrftime.3
|
1998-10-05 23:44:53 +04:00
|
|
|
usno1988 usno1989 usno1989a usno1995 usno1997 usno1998"
|
|
|
|
|
|
|
|
NEWTONORMAL="ctime.3
|
|
|
|
tzset.3"
|
|
|
|
|
|
|
|
rm -f ${NOIMPORT}
|
|
|
|
|
|
|
|
for f in ${NEWTONORMAL}; do
|
|
|
|
mv new${f} ${f};
|
|
|
|
done
|