diff options
author | nik <nik@FreeBSD.org> | 1999-03-27 16:02:04 +0000 |
---|---|---|
committer | nik <nik@FreeBSD.org> | 1999-03-27 16:02:04 +0000 |
commit | db044d396da0ae2b87cf383e242843ec2914f459 (patch) | |
tree | 777e48631655ebc17047512be61a18884ab10400 /release/Makefile | |
parent | 336599fc9061f9dd3b96a6874f1b9ebcdac3a362 (diff) | |
download | FreeBSD-src-db044d396da0ae2b87cf383e242843ec2914f459.zip FreeBSD-src-db044d396da0ae2b87cf383e242843ec2914f459.tar.gz |
If ALLLANG is not set then ensure that DOC_LANG=en is, so that
the English Handbook is built (it's not built by default any more).
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 2ec2cf1..c01a43a 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.473 1999/03/10 03:50:38 jkh Exp $ +# $Id: Makefile,v 1.474 1999/03/14 20:41:12 markm Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -212,6 +212,8 @@ rerelease release: .endif .if defined(ALLLANG) echo "export ALLLANG=${ALLLANG}" >> ${CHROOTDIR}/mk +.else + echo "export DOC_LANG=en" >> ${CHROOTDIR}/mk .endif .if defined(NOSRC) echo "export NOSRC=${NOSRC}" >> ${CHROOTDIR}/mk |