mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
Delete $Id$ line from copyright.
Submitted: Bruce
This commit is contained in:
parent
0e59c641dc
commit
d1515d7fc1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27302
@ -32,7 +32,7 @@
|
||||
# SUCH DAMAGE.
|
||||
#
|
||||
# @(#)newvers.sh 8.1 (Berkeley) 4/20/94
|
||||
# $Id$
|
||||
# $Id: newvers.sh,v 1.32 1997/02/22 09:28:13 peter Exp $
|
||||
|
||||
TYPE="FreeBSD"
|
||||
REVISION="3.0"
|
||||
@ -52,9 +52,12 @@ year=`date '+%Y'`
|
||||
for bsd_copyright in ../$b ../../$b ../../../$b /usr/src/$b /usr/$b
|
||||
do
|
||||
if [ -r "$bsd_copyright" ]; then
|
||||
COPYRIGHT=`sed -e "s/\[year\]/$year/" \
|
||||
-e 's/\[your name here\]\. /FreeBSD Inc./' \
|
||||
-e 's/\[your name\]/FreeBSD Inc./' $bsd_copyright`
|
||||
COPYRIGHT=`sed \
|
||||
-e "s/\[year\]/$year/" \
|
||||
-e 's/\[your name here\]\.* /FreeBSD Inc./' \
|
||||
-e 's/\[your name\]\.*/FreeBSD Inc./' \
|
||||
-e '/\[id for your version control system, if any\]/d' \
|
||||
$bsd_copyright`
|
||||
break
|
||||
fi
|
||||
done
|
||||
@ -62,7 +65,7 @@ done
|
||||
# no copyright found, use a dummy
|
||||
if [ X"$COPYRIGHT" = X ]; then
|
||||
COPYRIGHT="/*
|
||||
* Copyright (C) $year
|
||||
* Copyright (c) $year
|
||||
* FreeBSD Inc. All rights reserved.
|
||||
*
|
||||
*/"
|
||||
@ -70,7 +73,6 @@ fi
|
||||
|
||||
# add newline
|
||||
COPYRIGHT="$COPYRIGHT
|
||||
|
||||
"
|
||||
|
||||
LC_TIME=C; export LC_TIME
|
||||
|
Loading…
Reference in New Issue
Block a user