summaryrefslogtreecommitdiff
path: root/lib/libc/time/tzcode2netbsd
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>1998-10-05 19:44:53 +0000
committerkleink <kleink@NetBSD.org>1998-10-05 19:44:53 +0000
commiteaf4c8b985a49e3663bc64600615b30d336a164d (patch)
tree5323e81bb54c1c7231c4271b9b27d738d505bc61 /lib/libc/time/tzcode2netbsd
parent76efe5d523e82ebe0149e58722dcc9ca25923f35 (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-xlib/libc/time/tzcode2netbsd25
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