Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/hil don't escape the unescapable



details:   https://anonhg.NetBSD.org/src/rev/087669528df4
branches:  trunk
changeset: 348564:087669528df4
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Oct 26 13:47:05 2016 +0000

description:
don't escape the unescapable

diffstat:

 sys/dev/hil/devlist2h.awk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r e6a5ba531511 -r 087669528df4 sys/dev/hil/devlist2h.awk
--- a/sys/dev/hil/devlist2h.awk Wed Oct 26 10:21:44 2016 +0000
+++ b/sys/dev/hil/devlist2h.awk Wed Oct 26 13:47:05 2016 +0000
@@ -1,5 +1,5 @@
 #! /usr/bin/awk -f
-#      $NetBSD: devlist2h.awk,v 1.1 2011/02/06 18:26:54 tsutsui Exp $
+#      $NetBSD: devlist2h.awk,v 1.2 2016/10/26 13:47:05 christos Exp $
 #      $OpenBSD: devlist2h.awk,v 1.4 2006/08/10 23:44:16 miod Exp $
 #
 # Copyright (c) 2003, Miodrag Vallat.
@@ -32,7 +32,7 @@
        VERSION = $0
        gsub("\\$", "", VERSION)
 
-       printf("/*\t\$NetBSD\$\t*/\n\n")
+       printf("/*\t$NetBSD%s\t*/\n\n", "$")
        printf("/*\n")
        printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n")
        printf(" *\n")



Home | Main Index | Thread Index | Old Index