aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-04-22 21:39:15 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-04-22 21:39:15 +0000
commit48bf097c94f946bc61034a0169b3f2e7cc77f152 (patch)
treedea1feab2ae9fded35b8ebfa7bfe9283f456a199 /sys
parent243ae8c754bde5c5b3f524d20d137bd7f3d2f76d (diff)
downloadsrc-48bf097c94f946bc61034a0169b3f2e7cc77f152.tar.gz
src-48bf097c94f946bc61034a0169b3f2e7cc77f152.zip
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.
Notes
Notes: svn path=/head/; revision=8003
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/newvers.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index abdb415e3e1a..945321b3e67b 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -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" ]