2.1.0R is over and out. Comment out the tags for it from the release

Makefile (so release builds in -current require to set it from the
command line).

Make the cleanup of ${CHROOTDIR} non-fatal.  Otherwise, it stops
immediately if the ${CHROTDIR} is on a separately mounted file system.
This commit is contained in:
Joerg Wunsch 1995-12-30 21:15:45 +00:00
parent 6065a0be11
commit b7738481bc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13124

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.194 1995/07/25 19:13:20 jkh Exp $
# $Id: Makefile,v 1.195 1995/12/07 10:32:51 peter Exp $
#
# How to roll a release:
#
@ -11,10 +11,10 @@
# that on a 14.4 line just yet...
#
# SET THIS !!!
BUILDNAME=2.1.0-RELEASE
CHROOTDIR=/a/release
BUILDNAME=2.2-current
#CHROOTDIR=/a/release
# If this is a RELEASE, then set
RELEASETAG=RELENG_2_1_0
#RELEASETAG=RELENG_2_1_0
# Things which without too much trouble can be considered variables
@ -70,9 +70,9 @@ release:
.endif
.if exists(${CHROOTDIR})
chflags -R noschg ${CHROOTDIR}/.
rm -rf ${CHROOTDIR}
-rm -rf ${CHROOTDIR}
.endif
mkdir -p ${CHROOTDIR}
-mkdir -p ${CHROOTDIR}
cd ${.CURDIR}/../etc ; ${MAKE} distrib-dirs DESTDIR=${CHROOTDIR}
cd ${.CURDIR}/../etc ; ${MAKE} distribution DESTDIR=${CHROOTDIR}
cd ${.CURDIR}/.. ; ${MAKE} install DESTDIR=${CHROOTDIR}