1 #! /bin/sh 2 3 # 4 # $NetBSD: tzcode2netbsd,v 1.2 2000/12/12 15:36:49 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: tzcode2000g. 9 # 10 11 NOIMPORT="Makefile 12 date.1 date.c 13 gccdiffs 14 logwtmp.c 15 newstrftime.3 16 usno1988 usno1989 usno1989a usno1995 usno1997 usno1998" 17 18 NEWTONORMAL="ctime.3 19 tzset.3" 20 21 rm -f ${NOIMPORT} 22 23 for f in ${NEWTONORMAL}; do 24 mv new${f} ${f}; 25 done 26