diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-01 12:01:39 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-01 12:01:39 +0000 |
commit | 7b41bdb12c2c4597a2b3c92b5d3fef299119f386 (patch) | |
tree | e770cd35dc73d9c8a359f9755f9969f4b28efdae /release/Makefile | |
parent | b5e924a383096a613a12241d85667189937eebf8 (diff) | |
download | FreeBSD-src-7b41bdb12c2c4597a2b3c92b5d3fef299119f386.zip FreeBSD-src-7b41bdb12c2c4597a2b3c92b5d3fef299119f386.tar.gz |
Rename secure to DES. This isn't a 100% accurate renaming since some
of the eBones stuff is in there too, but it's better than `secure', which
implies that the user will be insecure without it.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/release/Makefile b/release/Makefile index 805fdfa..0485d9f 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.143 1995/04/24 04:06:30 phk Exp $ +# $Id: Makefile,v 1.144 1995/04/30 09:02:08 phk Exp $ # # How to roll a release: # @@ -19,7 +19,7 @@ BUILDNAME=SOME_RANDOM_BUILD # Things which without too much trouble can be considered variables EXPORT_DISTS= games manpages proflibs dict info -EXTRA_DISTS= secure ${EXPORT_DISTS} +EXTRA_DISTS= DES ${EXPORT_DISTS} ALL_DISTS= bin ${EXTRA_DISTS} CPIO1= etc/services etc/protocols etc/sysconfig @@ -264,7 +264,7 @@ release.7: > ${RD}/floppies/cpio.flp touch release.7 -# Make binary dists, notice that secure dist isn't finished yet. +# Make binary dists, notice that DES dist isn't finished yet. release.8: @cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR rm -rf ${RD}/dists @@ -285,7 +285,7 @@ release.8: touch release.8 -# Make source dists, and finish of secure too +# Make source dists, and finish of DES too release.9: @cd ${.CURDIR} ; $(MAKE) ckRELEASEDIR @cd ${.CURDIR} ; $(MAKE) doTARBALL SD=/usr/src \ @@ -299,12 +299,12 @@ release.9: fi ; \ done ( cd ${RD}/dists/src && \ - if [ -f ssecure.aa ] ; then mv ssecure.* ../secure ; fi && \ - if [ -f sebones.aa ] ; then mv sebones.* ../secure ; fi && \ + if [ -f sDES.aa ] ; then mv sDES.* ../DES ; fi && \ + if [ -f sebones.aa ] ; then mv sebones.* ../DES ; fi && \ sh -e ${.CURDIR}/scripts/mkchecksums.sh ) cp ${.CURDIR}/scripts/extract_src.sh ${RD}/dists/src/extract.sh - if [ -d ${RD}/dists/secure ] ; then \ - ( cd ${RD}/dists/secure && sh -e ${.CURDIR}/scripts/mkchecksums.sh );\ + if [ -d ${RD}/dists/DES ] ; then \ + ( cd ${RD}/dists/DES && sh -e ${.CURDIR}/scripts/mkchecksums.sh );\ fi @echo "src distribution is finished." touch release.9 |