summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/kern/vnode_if.pl8
-rw-r--r--sys/tools/vnode_if.awk8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/vnode_if.pl b/sys/kern/vnode_if.pl
index 944232e..0cc3cf9 100644
--- a/sys/kern/vnode_if.pl
+++ b/sys/kern/vnode_if.pl
@@ -79,12 +79,12 @@ open(SRC, "<$srcfile") || die "Unable to open input file";
if ($hfile) {
open(HEADER, ">$HEADER") || die "Unable to create $HEADER";
# Print out header information for vnode_if.h.
- print HEADER <<END_OF_LEADING_COMMENT
+ print HEADER <<'END_OF_LEADING_COMMENT'
/*
* This file is produced automatically.
* Do not modify anything in here by hand.
*
- * Created from src/sys/kern/vnode_if.pl
+ * Created from $FreeBSD$
*/
extern struct vnodeop_desc vop_default_desc;
@@ -95,12 +95,12 @@ END_OF_LEADING_COMMENT
if ($cfile) {
open(CFILE, ">$CFILE") || die "Unable to create $CFILE";
# Print out header information for vnode_if.c.
- print CFILE <<END_OF_LEADING_COMMENT
+ print CFILE <<'END_OF_LEADING_COMMENT'
/*
* This file is produced automatically.
* Do not modify anything in here by hand.
*
- * Created from src/sys/kern/vnode_if.pl
+ * Created from $FreeBSD$
*/
#include <sys/param.h>
diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk
index 944232e..0cc3cf9 100644
--- a/sys/tools/vnode_if.awk
+++ b/sys/tools/vnode_if.awk
@@ -79,12 +79,12 @@ open(SRC, "<$srcfile") || die "Unable to open input file";
if ($hfile) {
open(HEADER, ">$HEADER") || die "Unable to create $HEADER";
# Print out header information for vnode_if.h.
- print HEADER <<END_OF_LEADING_COMMENT
+ print HEADER <<'END_OF_LEADING_COMMENT'
/*
* This file is produced automatically.
* Do not modify anything in here by hand.
*
- * Created from src/sys/kern/vnode_if.pl
+ * Created from $FreeBSD$
*/
extern struct vnodeop_desc vop_default_desc;
@@ -95,12 +95,12 @@ END_OF_LEADING_COMMENT
if ($cfile) {
open(CFILE, ">$CFILE") || die "Unable to create $CFILE";
# Print out header information for vnode_if.c.
- print CFILE <<END_OF_LEADING_COMMENT
+ print CFILE <<'END_OF_LEADING_COMMENT'
/*
* This file is produced automatically.
* Do not modify anything in here by hand.
*
- * Created from src/sys/kern/vnode_if.pl
+ * Created from $FreeBSD$
*/
#include <sys/param.h>
OpenPOWER on IntegriCloud