From owner-cvs-all Thu Jul 25 7:18:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 821D937B400; Thu, 25 Jul 2002 07:18:08 -0700 (PDT) Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id B704243E77; Thu, 25 Jul 2002 07:18:02 -0700 (PDT) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g6PEHxC72514; Thu, 25 Jul 2002 16:17:59 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200207251417.g6PEHxC72514@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src Makefile Makefile.inc1 src/secure Makefile src/share/man/man7 release.7 src/kerberos5 Makefile Makefile.inc In-Reply-To: <200207251327.g6PDROE70536@zibbi.icomtek.csir.co.za> from John Hay at "Jul 25, 2002 03:27:24 pm" To: ru@FreeBSD.org Date: Thu, 25 Jul 2002 16:17:59 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [...] > > > > > release Makefile [...] > > > > > > > > This has been tested on an i386 box with TARGET_ARCH=i386, > > > > TARGET_ARCH=alpha, and TARGET=pc98. Alpha died by ENOSPC > > > > attempting to create the mfsroot floppy later in release.9. > > > > I think this is reproduceable on Alphas too. > > > > > > > > IMPORTANT. For anyone attempting to "reproduce" this. It > > > > is important that /usr/src/release/Makefile be the latest > > > > version (cd /usr/src/release; cvs up -l) before attempting > > > > to "make release". I'm still looking for a clean way to > > > > overcome this (old) problem. > > > > > > With this change I cannot build a release with docs on -stable > > > anymore. The culprit is again the interaction of TARGET_ARCH > > > and print/ghostscript-gnu, just as on -current. > > > > > Even if TARGET_ARCH=${MACHINE_ARCH}? Have you tried my work > > around? > > With workaround do you mean that /usr/src/release/Makefile also > have to be up-to-date? If so, yes, I did update that to: > > $FreeBSD: src/release/Makefile,v 1.536.2.88 2002/07/25 09:33:16 ru Exp $ > > I don't specifically set TARGET_ARCH, I just do a make release on a > i386 box to get an i386 release. This patch work around the problem. It gets my box past building the doc tools at least. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org Index: release/Makefile =================================================================== RCS file: /home/ncvs/src/release/Makefile,v retrieving revision 1.536.2.88 diff -u -r1.536.2.88 Makefile --- release/Makefile 25 Jul 2002 09:33:16 -0000 1.536.2.88 +++ release/Makefile 25 Jul 2002 13:34:52 -0000 @@ -830,6 +830,7 @@ doc.1: @echo "Making docs..." @for i in ${DOCPORTS}; do \ + unset TARGET_ARCH; \ cd /usr/ports/$$i && make all install clean BATCH=yes JADETEX=no WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \ done @cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/bin/usr/share/doc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message