diff options
author | joerg <joerg@FreeBSD.org> | 1996-11-07 14:50:28 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-11-07 14:50:28 +0000 |
commit | 7ab469589fbe121d73d01c0666c6eae87fe5c843 (patch) | |
tree | 92ff9feddf21a1a2dc80ac37c4184c590ac83404 /release | |
parent | 6fc1a569c613dea92b2cd602cf394dd627edb3e8 (diff) | |
download | FreeBSD-src-7ab469589fbe121d73d01c0666c6eae87fe5c843.zip FreeBSD-src-7ab469589fbe121d73d01c0666c6eae87fe5c843.tar.gz |
Merge my vi hack^H^H^H^Hframework into HEAD, so the various revisions
should be in sync again. It's an env variable only, hence it's
harmless and ignored without the actual changes in vi's Makefile.
Suggested by: jkh
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 400a584..ec01209 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.248 1996/11/03 08:52:31 joerg Exp $ +# $Id: Makefile,v 1.249 1996/11/03 14:39:18 joerg Exp $ # # How to roll a release: # @@ -198,11 +198,15 @@ release.3: # Make and install the three crunched binaries which live on the floppies. # You are not supposed to like this :-) +# +# NB: the "RELEASE_BUILD_FIXIT" magic prevents vi from including the +# Tcl and Perl APIs. See also /usr/src/usr.bin/vi/Makefile. release.4: @cd ${.CURDIR} && $(MAKE) ckRELEASEDIR cd ${.CURDIR}/sysinstall && make depend all rm -rf ${RD}/crunch mkdir -p ${RD}/crunch + export RELEASE_BUILD_FIXIT=noway ; \ for j in ${WHICH_CRUNCH} ; do \ rm -rf $${j}_crunch && \ mkdir $${j}_crunch && \ |