1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-01 08:27:59 +00:00

Avoid using \$. It's an unknown escape sequence. Some awks warn about

that. Instead, simply remove the sequence entirely because we never
commit the generated files.
This commit is contained in:
Warner Losh 2018-01-28 05:13:08 +00:00
parent a645f2a50a
commit eef186f8f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328507

View File

@ -42,14 +42,6 @@ function usage()
function header(file)
{
if (os == "NetBSD")
printf("/*\t\$NetBSD\$\t*/\n\n") > file
else if (os == "FreeBSD")
printf("/* \$FreeBSD\$ */\n\n") > file
else if (os == "OpenBSD")
printf("/*\t\$OpenBSD\$\t*/\n\n") > file
else
printf("/* ??? */\n\n") > file
printf("/*\n") > file
printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
> file