diff options
author | joerg <joerg@FreeBSD.org> | 1995-12-30 21:15:45 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-12-30 21:15:45 +0000 |
commit | 8afe324a8c4b9c81b15a899f9d39f7f38b253f13 (patch) | |
tree | 9685667415ea8bf21f0d8d45fc9b268bc50f3f13 /release/Makefile | |
parent | c3f352d4ad515968c54d216a0e53252eff8ab3ef (diff) | |
download | FreeBSD-src-8afe324a8c4b9c81b15a899f9d39f7f38b253f13.zip FreeBSD-src-8afe324a8c4b9c81b15a899f9d39f7f38b253f13.tar.gz |
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.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/release/Makefile b/release/Makefile index e9ae128..ee6c04d 100644 --- a/release/Makefile +++ b/release/Makefile @@ -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} |