Delete $Id$ line from copyright.

Submitted: Bruce
This commit is contained in:
Wolfram Schneider 1997-07-09 20:38:19 +00:00
parent 0e59c641dc
commit d1515d7fc1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27302

View File

@ -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