1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

First part of the "what version of CURRENT" fix.

We now have RELEASE=CURRENT in the CVS-tree.

If this hasn't been edited, we will use "BUILT-yyyymmdd" where the time is
that of the compile, and leave it at that, we can't do any better.

If there is no serious objections, I will modify the "cvs co" script on
freefall to fiddle this file after checkout so that it becomes
CURRENT-yyyymmdd, where the time is that of the checkout.
This commit is contained in:
Poul-Henning Kamp 1995-04-22 21:39:15 +00:00
parent 243ae8c754
commit 48bf097c94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8003

View File

@ -32,11 +32,16 @@
# SUCH DAMAGE.
#
# @(#)newvers.sh 8.1 (Berkeley) 4/20/94
# $Id: newvers.sh,v 1.13 1995/04/15 06:00:11 jkh Exp $
# $Id: newvers.sh,v 1.14 1995/04/17 10:17:45 gpalmer Exp $
TYPE="FreeBSD"
RELEASE="2.0.950418-SNAP"
RELEASE="CURRENT"
RELDATE="199504"
if [ "x$RELEASE" = xCURRENT ] ; then
RELEASE=`date '+BUILT-%Y%m%d'`
fi
DISTNAME=${RELEASE}
if [ "x$JUST_TELL_ME" = "x" ]