From owner-freebsd-current Wed Jul 10 21:57:57 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2565237B435; Wed, 10 Jul 2002 21:57:47 -0700 (PDT) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF26243E3B; Wed, 10 Jul 2002 21:57:46 -0700 (PDT) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id CB17D9E57; Thu, 11 Jul 2002 00:53:44 -0400 (EDT) Date: Thu, 11 Jul 2002 00:53:44 -0400 From: Mike Barcroft To: Giorgos Keramidas Cc: current@FreeBSD.org Subject: Re: sparc64 tinderbox failure Message-ID: <20020711005344.F89841@espresso.q9media.com> References: <200207100958.g6A9wFmY072199@bowie.private> <20020710172346.GB1118@hades.hell.gr> <200207102122.g6ALMCi1004528@apollo.backplane.com> <20020710212942.GC4189@hades.hell.gr> <20020711011926.GA7476@hades.hell.gr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline In-Reply-To: <20020711011926.GA7476@hades.hell.gr>; from keramida@FreeBSD.org on Thu, Jul 11, 2002 at 04:19:26AM +0300 Organization: The FreeBSD Project Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Giorgos Keramidas writes: > Whoever fixes this, and however we agree to fix it, > should also remember to close the bin/40382 PR. Comments on the attached, untested patch? Best regards, Mike Barcroft --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.diff" Disable fatal warnings during bootstrap, build, and cross tools phase of world. Index: Makefile.inc1 =================================================================== RCS file: /work/repo/src/Makefile.inc1,v retrieving revision 1.294 diff -u -r1.294 Makefile.inc1 --- Makefile.inc1 1 Jul 2002 17:51:43 -0000 1.294 +++ Makefile.inc1 11 Jul 2002 04:50:02 -0000 @@ -589,8 +589,8 @@ ${_cxx_consumers} gnu/usr.bin/texinfo cd ${.CURDIR}/${_tool}; \ ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ - ${MAKE} DIRPRFX=${_tool}/ all; \ + ${MAKE} DIRPRFX=${_tool}/ NO_WERROR=true depend; \ + ${MAKE} DIRPRFX=${_tool}/ NO_WERROR=true all; \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor @@ -624,7 +624,8 @@ .for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \ ${_libroken4} ${_libkrb5} lib/libncurses ${_share} \ usr.bin/awk usr.bin/file usr.sbin/sysinstall - cd ${.CURDIR}/${_tool}; ${MAKE} DIRPRFX=${_tool}/ build-tools + cd ${.CURDIR}/${_tool}; \ + ${MAKE} DIRPRFX=${_tool}/ NO_WERROR=true build-tools .endfor # @@ -650,8 +651,8 @@ gnu/usr.bin/cc ${_xlint} cd ${.CURDIR}/${_tool}; \ ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ - ${MAKE} DIRPRFX=${_tool}/ all; \ + ${MAKE} DIRPRFX=${_tool}/ NO_WERROR=true depend; \ + ${MAKE} DIRPRFX=${_tool}/ NO_WERROR=true all; \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor --Kj7319i9nmIyA2yE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message