summaryrefslogtreecommitdiff
path: root/sys/dev/onewire/devlist2h.awk
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2006-03-04 16:32:41 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2006-03-04 16:32:41 +0000
commitdeffa5f2ffe3463b161ff80ce1dcfcbd08d50827 (patch)
tree1620d7f2ff0395f51767e116fa982a1fce98c3bc /sys/dev/onewire/devlist2h.awk
parentb9fdb6aa1f532061d14d21ff8ee5f45831608e29 (diff)
Escape $$ in $OpenBSD$, it's not supposed to be expanded.
Diffstat (limited to 'sys/dev/onewire/devlist2h.awk')
-rw-r--r--sys/dev/onewire/devlist2h.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/onewire/devlist2h.awk b/sys/dev/onewire/devlist2h.awk
index fdb8357d9bf..25e94137085 100644
--- a/sys/dev/onewire/devlist2h.awk
+++ b/sys/dev/onewire/devlist2h.awk
@@ -1,4 +1,4 @@
-# $OpenBSD: devlist2h.awk,v 1.1 2006/03/04 16:27:03 grange Exp $
+# $OpenBSD: devlist2h.awk,v 1.2 2006/03/04 16:32:40 grange Exp $
#
# Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org>
@@ -25,10 +25,10 @@ NR == 1 {
VERSION = $0
gsub("\\$", "", VERSION)
- printf("/*\t$OpenBSD: devlist2h.awk,v 1.1 2006/03/04 16:27:03 grange Exp $\t*/\n\n" \
+ printf("/*\t\$OpenBSD\$\t*/\n\n" \
"/*\n * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n" \
" *\n * Generated from:\n *\t%s\n */\n\n", VERSION) > hfile
- printf("/*\t$OpenBSD: devlist2h.awk,v 1.1 2006/03/04 16:27:03 grange Exp $\t*/\n\n" \
+ printf("/*\t\$OpenBSD\$\t*/\n\n" \
"/*\n * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n" \
" *\n * Generated from:\n *\t%s\n */\n\n", VERSION) > dfile
printf("static const struct onewire_family " \