Fix from FreeBSD.

This commit is contained in:
augustss 1999-08-28 10:01:42 +00:00
parent e470b13e28
commit 598999e482
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#! /usr/bin/awk -f
# $NetBSD: devlist2h.awk,v 1.6 1999/08/17 16:06:20 augustss Exp $
# $NetBSD: devlist2h.awk,v 1.7 1999/08/28 10:01:42 augustss Exp $
#
# Copyright (c) 1995, 1996 Christopher G. Demetriou
# All rights reserved.
@ -41,7 +41,7 @@ NR == 1 {
if (os == "NetBSD")
printf("/*\t\$NetBSD\$\t*/\n\n") > dfile
else if (os == "FreeBSD")
printf("/*\tFreeBSD \$Id\$\t*/\n\n") > dfile
printf("/*\t\$FreeBSD\$\t*/\n\n") > dfile
else if (os == "OpenBSD")
printf("/*\t\$OpenBSD\$\t*/\n\n") > dfile
else
@ -57,7 +57,7 @@ NR == 1 {
if (os == "NetBSD")
printf("/*\t\$NetBSD\$\t*/\n\n") > hfile
else if (os == "FreeBSD")
printf("/*\tFreeBSD \$Id\$\t*/\n\n") > hfile
printf("/*\t\$FreeBSD\$\t*/\n\n") > hfile
else if (os == "OpenBSD")
printf("/*\t\$OpenBSD\$\t*/\n\n") > hfile
else