Date: Thu, 24 Jan 2002 14:07:05 -0500 (EST) From: jack <jack@germanium.xtalwind.net> To: stable@freebsd.org Subject: MAKE_ISOS and CD_EXTRA_BITS Message-ID: <20020124122000.Q33638-100000@germanium.xtalwind.net>
next in thread | raw e-mail | index | archive | help
Kudos to whoever thought of these. However CD_EXTRA_BITS isn't passed to the chroot environment. Works Here[tm] patch to /usr/src/release/Makefile follows. --- Makefile.orig Wed Jan 23 17:35:45 2002 +++ Makefile Thu Jan 24 12:13:40 2002 @@ -251,6 +251,7 @@ @exit 1 .endif .if make(release) + @echo "XXXX CD_EXTRA_BITS = ${CD_EXTRA_BITS} 1" .if exists(${CHROOTDIR}) # The first command will fail on a handful of files that have their schg # flags set. But it greatly speeds up the next two commands. @@ -351,6 +352,9 @@ .endif .if defined(MAKE_ISOS) echo "export MAKE_ISOS=${MAKE_ISOS}" >> ${CHROOTDIR}/mk +.endif +.if defined(CD_EXTRA_BITS) + echo "export CD_EXTRA_BITS=${CD_EXTRA_BITS}" >> ${CHROOTDIR}/mk .endif .if defined(DOMINIMALDOCPORTS) echo "export DOMINIMALDOCPORTS=${DOMINIMALDOCPORTS}" >> ${CHROOTDIR}/mk -------------------------------------------------------------------------- Jack O'Neill Systems Administrator / Systems Analyst jack@germanium.xtalwind.net Crystal Wind Communications, Inc. Finger jack@germanium.xtalwind.net for my PGP key. PGP Key fingerprint = F6 C4 E6 D4 2F 15 A7 67 FD 09 E9 3C 5F CC EB CD enriched, vcard, HTML messages > /dev/null -------------------------------------------------------------------------- A Microsoft Certified Systems Engineer is to computing what a McDonalds Certified Food Specialist is to fine cuisine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020124122000.Q33638-100000>