diff options
author | ru <ru@FreeBSD.org> | 2002-04-23 09:24:00 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-04-23 09:24:00 +0000 |
commit | ced0e287eb94a9fce5240c963f3c71897280c99f (patch) | |
tree | b9a25ddf7d9a3a13cf3267d3798d8721f30d565c /release | |
parent | 1a085bedc04ce216032d93ffecd05d19b8bd8809 (diff) | |
download | FreeBSD-src-ced0e287eb94a9fce5240c963f3c71897280c99f.zip FreeBSD-src-ced0e287eb94a9fce5240c963f3c71897280c99f.tar.gz |
Do not spam initial ${CHROOTDIR} world with Texinfo and HTML docs.
For rerelease, run "make -DNOCLEAN world" instead of simple and
insufficient in some cases "make all install". This is especially
true for cross-arch "make release"s which we don't (yet) support.
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/release/Makefile b/release/Makefile index 4c1de97..791404c 100644 --- a/release/Makefile +++ b/release/Makefile @@ -268,7 +268,8 @@ rerelease release: if [ -f /etc/resolv.conf ]; then \ cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \ fi - cd ${.CURDIR}/.. && ${MAKE} installworld DESTDIR=${CHROOTDIR} NOMAN=1 + cd ${.CURDIR}/.. && ${MAKE} -DNOHTML -DNOINFO -DNOMAN installworld \ + DESTDIR=${CHROOTDIR} mkdir ${CHROOTDIR}/${BOOTSTRAPDIR} for i in ${BOOTSTRAPUTILS} ; do \ cp -p ${CHROOTDIR}$$i ${CHROOTDIR}/${BOOTSTRAPDIR} ; \ @@ -394,7 +395,7 @@ rerelease release: echo " make ${WORLD_FLAGS} world && \\" >> ${CHROOTDIR}/mk .endif .if make(rerelease) - echo " make ${WORLD_FLAGS} all install && \\" >> ${CHROOTDIR}/mk + echo " make ${WORLD_FLAGS} -DNOCLEAN world && \\" >> ${CHROOTDIR}/mk .endif echo " touch /tmp/.world_done" >> ${CHROOTDIR}/mk echo "fi" >> ${CHROOTDIR}/mk |