diff options
author | pst <pst@FreeBSD.org> | 1997-06-28 08:21:10 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1997-06-28 08:21:10 +0000 |
commit | ca8e3b2040349bc168d041d931921d2e61659f90 (patch) | |
tree | d394e129f2a8d12e1027718300a57b82d9479794 /release/Makefile | |
parent | 489b7a4fe844901cd97a4c6ac90a05b5a0952445 (diff) | |
download | FreeBSD-src-ca8e3b2040349bc168d041d931921d2e61659f90.zip FreeBSD-src-ca8e3b2040349bc168d041d931921d2e61659f90.tar.gz |
Reorder things and import NOSHARED.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile index c880310..4610689 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.307 1997/06/23 01:49:35 jkh Exp $ +# $Id: Makefile,v 1.308 1997/06/24 23:08:18 jkh Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -181,15 +181,18 @@ rerelease release: .if defined(NOPORTS) echo "export NOPORTS=${NOPORTS}" >> ${CHROOTDIR}/mk .endif -.if defined(BOOT_CONFIG) - echo "export BOOT_CONFIG=\"${BOOT_CONFIG}\"">> ${CHROOTDIR}/mk -.endif .if defined(NODOC) echo "export NODOC=${NODOC}" >> ${CHROOTDIR}/mk .endif .if defined(NOSRC) echo "export NOSRC=${NOSRC}" >> ${CHROOTDIR}/mk .endif +.if defined(NOSHARED) + echo "export NOSHARED=${NOSHARED}" >> ${CHROOTDIR}/mk +.endif +.if defined(BOOT_CONFIG) + echo "export BOOT_CONFIG=\"${BOOT_CONFIG}\"">> ${CHROOTDIR}/mk +.endif # Don't remove this, or the build will fall over! echo "export RELEASEDIR=/R" >> ${CHROOTDIR}/mk echo "export PATH=${BOOTSTRAPDIR}:$${PATH}" >> ${CHROOTDIR}/mk |