diff options
| author | kleink <kleink@NetBSD.org> | 1998-10-05 19:44:53 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 1998-10-05 19:44:53 +0000 |
| commit | eaf4c8b985a49e3663bc64600615b30d336a164d (patch) | |
| tree | 5323e81bb54c1c7231c4271b9b27d738d505bc61 /lib/libc/time/tzcode2netbsd | |
| parent | 76efe5d523e82ebe0149e58722dcc9ca25923f35 (diff) | |
Converts an extracted tzcode distribution into the format suitable for
importing it into the NetBSD source tree.
Diffstat (limited to 'lib/libc/time/tzcode2netbsd')
| -rwxr-xr-x | lib/libc/time/tzcode2netbsd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/libc/time/tzcode2netbsd b/lib/libc/time/tzcode2netbsd new file mode 100755 index 00000000000..b513c8e90d5 --- /dev/null +++ b/lib/libc/time/tzcode2netbsd @@ -0,0 +1,25 @@ +#! /bin/sh + +# +# $NetBSD: tzcode2netbsd,v 1.1 1998/10/05 19:44:53 kleink Exp $ +# +# Convert an extracted tzcode distribution into the format suitable +# for importing it into the NetBSD source tree. +# Last updated for: tzcode1998h. +# + +NOIMPORT="Makefile + date.1 date.c + gccdiffs + logwtmp.c + newstrftime.3 strftime.c + usno1988 usno1989 usno1989a usno1995 usno1997 usno1998" + +NEWTONORMAL="ctime.3 + tzset.3" + +rm -f ${NOIMPORT} + +for f in ${NEWTONORMAL}; do + mv new${f} ${f}; +done |
