mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Throw the $FreeBSD$s back in, properly escaping them.
This commit is contained in:
parent
91ea78c52a
commit
a262ae8267
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88873
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user