From 9b7afe221ee56f4accc186ec6fcf692d7632f2e0 Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 9 Jan 1998 06:46:26 +0000 Subject: [PATCH] Put RCS IDs into the generated files, in the correct place. --- sys/dev/eisa/devlist2h.awk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/eisa/devlist2h.awk b/sys/dev/eisa/devlist2h.awk index 31173f4941d9..098e094b461c 100644 --- a/sys/dev/eisa/devlist2h.awk +++ b/sys/dev/eisa/devlist2h.awk @@ -1,5 +1,5 @@ #! /usr/bin/awk -f -# $NetBSD: devlist2h.awk,v 1.4 1998/01/08 00:33:33 thorpej Exp $ +# $NetBSD: devlist2h.awk,v 1.5 1998/01/09 06:46:26 thorpej Exp $ # # Copyright (c) 1995, 1996 Christopher G. Demetriou # All rights reserved. @@ -38,6 +38,7 @@ NR == 1 { VERSION = $0 gsub("\\$", "", VERSION) + printf("/*\t\$NetBSD\$\t*/\n\n") > dfile printf("/*\n") > dfile printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ > dfile @@ -46,6 +47,7 @@ NR == 1 { printf(" *\t%s\n", VERSION) > dfile printf(" */\n") > dfile + printf("/*\t\$NetBSD\$\t*/\n\n") > hfile printf("/*\n") > hfile printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ > hfile