diff options
author | brian <brian@FreeBSD.org> | 1998-06-24 06:55:18 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-06-24 06:55:18 +0000 |
commit | db662b91fdd2f690025e4eeb7b578c512eb57a8a (patch) | |
tree | 5c6f1481b10bd644981cf064ea534736614b31e0 | |
parent | 70c19cb7466969560cae87b5eaf5fcbb47d5030d (diff) | |
download | FreeBSD-src-db662b91fdd2f690025e4eeb7b578c512eb57a8a.zip FreeBSD-src-db662b91fdd2f690025e4eeb7b578c512eb57a8a.tar.gz |
Clean the crunchgen targets after creating the crunch binary.
This *should* avoid the -DRELEASE_CRUNCH polution that's
mis-building user-ppp.
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 1c0f603..7c62e8d 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.355 1998/06/07 21:53:01 jdp Exp $ +# $Id: Makefile,v 1.356 1998/06/08 20:58:02 jdp Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -326,6 +326,8 @@ release.4: ${MAKE} -DRELEASE_CRUNCH -f $${j}_crunch.mk subclean all \ NOCRYPT=yes "CFLAGS=${CFLAGS} -DCRUNCHED_BINARY") && \ mv $${j}_crunch/$${j}_crunch ${RD}/crunch/$${j} && \ + ${MAKE} -DRELEASE_CRUNCH -f $${j}_crunch.mk subclean \ + NOCRYPT=yes "CFLAGS=${CFLAGS} -DCRUNCHED_BINARY") && \ true || { rm -rf $${j}_crunch ; false ; } ; \ done touch release.4 |