diff options
author | marcel <marcel@FreeBSD.org> | 2005-09-07 04:34:11 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2005-09-07 04:34:11 +0000 |
commit | 7f3182e536d8a343c1b999ecde4b850c8644b3e6 (patch) | |
tree | 2ff50600820d1f6442de1f67d8d1944b9ebbabd3 /release/Makefile | |
parent | 07f3583b5aef67917ec3d47190b797f3298a09f6 (diff) | |
download | FreeBSD-src-7f3182e536d8a343c1b999ecde4b850c8644b3e6.zip FreeBSD-src-7f3182e536d8a343c1b999ecde4b850c8644b3e6.tar.gz |
Unbreak release builds. Now that NO_INFO also affects the installation
of texinfo and we need makeinfo to build world, we cannot have NO_INFO
anymore when we populate the chroot.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/release/Makefile b/release/Makefile index 85cbd1b..a01db51 100644 --- a/release/Makefile +++ b/release/Makefile @@ -354,9 +354,8 @@ release rerelease: .endif mkdir -p ${CHROOTDIR} @echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`" - cd ${WORLDDIR} && ${NATIVEMAKE} -DNO_GAMES -DNO_HTML -DNO_INFO \ - -DNO_LIB32 -DNO_MAN -DNO_NLS -DNO_PROFILE installworld \ - DESTDIR=${CHROOTDIR} + cd ${WORLDDIR} && ${NATIVEMAKE} -DNO_GAMES -DNO_HTML -DNO_LIB32 \ + -DNO_MAN -DNO_NLS -DNO_PROFILE installworld DESTDIR=${CHROOTDIR} cd ${WORLDDIR} && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR} if [ -f /etc/resolv.conf ]; then \ cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \ |