aboutsummaryrefslogtreecommitdiff
path: root/sys/tools
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-08-22 13:16:30 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-23 17:43:18 +0000
commit5b375162dec501d4277436f094863570ade17811 (patch)
tree6669646c62dee1d5cb25dd7c652d5a70e4172cbe /sys/tools
parent5197a1c13266334c937dc643f33bdc8899ebd9fb (diff)
downloadsrc-5b375162dec501d4277436f094863570ade17811.tar.gz
src-5b375162dec501d4277436f094863570ade17811.zip
pccard: Don't include version information.
$FreeBSD$ is about to be removed, so don't include the next line. Sponsored by: Netflix
Diffstat (limited to 'sys/tools')
-rw-r--r--sys/tools/pccarddevs2h.awk7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/tools/pccarddevs2h.awk b/sys/tools/pccarddevs2h.awk
index 923e63dbca83..df902984f1c5 100644
--- a/sys/tools/pccarddevs2h.awk
+++ b/sys/tools/pccarddevs2h.awk
@@ -92,16 +92,9 @@ BEGIN {
hfile="pccarddevs.h"
}
NR == 1 {
- VERSION = $0
- gsub("\\$", "", VERSION)
-
- printf("/*\t\$FreeBSD\$\t*/\n\n") > hfile
printf("/*\n") > hfile
printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
> hfile
- printf(" *\n") > hfile
- printf(" * generated from:\n") > hfile
- printf(" *\t%s\n", VERSION) > hfile
printf(" */\n") > hfile
next