also note the rcsid of mknative.common

This commit is contained in:
mrg 2006-05-15 21:01:42 +00:00
parent fedf1d0f26
commit 9afa8c578c
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mknative.common,v 1.5 2006/05/15 20:57:45 mrg Exp $
# $NetBSD: mknative.common,v 1.6 2006/05/15 21:01:42 mrg Exp $
#
# from: NetBSD: mknative,v 1.12 2003/03/05 06:17:17 mrg Exp
#
@ -52,6 +52,7 @@ write_c()
echo '/* This file is automatically generated. DO NOT EDIT! */' >$_TOP/$1.tmp || \
bomb "cannot create $1"
grep '$''NetBSD' $0 | sed 's,[#$],,g;s,.*,/* Generated from: & */,' >>$_TOP/$1.tmp
echo '$NetBSD: mknative.common,v 1.6 2006/05/15 21:01:42 mrg Exp $' | sed 's,[#$],,g;s,.*,/* and from: & */,' >>$_TOP/$1.tmp
echo '' >>$_TOP/$1.tmp
writefile $1
}
@ -63,6 +64,7 @@ write_mk()
echo '# This file is automatically generated. DO NOT EDIT!' >$_TOP/$1.tmp || \
bomb "cannot create $1"
grep '$''NetBSD' $0 | sed 's,[#$],,g;s,.*,# Generated from: &,' >>$_TOP/$1.tmp
echo '$NetBSD: mknative.common,v 1.6 2006/05/15 21:01:42 mrg Exp $' | sed 's,[#$],,g;s,.*,# and from: &,' >>$_TOP/$1.tmp
echo '#' >>$_TOP/$1.tmp
writefile $1
}