diff options
author | joerg <joerg@FreeBSD.org> | 1997-03-15 20:35:06 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1997-03-15 20:35:06 +0000 |
commit | cc24249a863147588766ca6185b86b74ddd1fbde (patch) | |
tree | 7b34dc8a04d2d65b4b803322daa1361255e85ea7 | |
parent | b8f2f1147801611483b2e8d4849505bf142fd332 (diff) | |
download | FreeBSD-src-cc24249a863147588766ca6185b86b74ddd1fbde.zip FreeBSD-src-cc24249a863147588766ca6185b86b74ddd1fbde.tar.gz |
Brain-o. BUILNAME is more important, RELEASETAG ain't even mandatory
at all (so protect it with .if defined).
-rw-r--r-- | release/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index bd88854..04138db 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.286 1997/03/14 08:21:09 joerg Exp $ +# $Id: Makefile,v 1.287 1997/03/15 19:51:16 joerg Exp $ # # How to roll a release: # @@ -132,7 +132,10 @@ rerelease release: echo "set -ex" >> ${CHROOTDIR}/mk echo "CFLAGS='-O2 -pipe'" >> ${CHROOTDIR}/mk echo "export CFLAGS" >> ${CHROOTDIR}/mk + echo "export BUILDNAME=${BUILDNAME}" >> ${CHROOTDIR}/mk +.if defined(RELEASETAG) echo "export RELEASETAG=${RELEASETAG}" >> ${CHROOTDIR}/mk +.endif .if defined(NO_PORTS) echo "export NO_PORTS=${NO_PORTS}" >> ${CHROOTDIR}/mk .endif |