Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jul 2002 00:53:44 -0400
From:      Mike Barcroft <mike@FreeBSD.org>
To:        Giorgos Keramidas <keramida@FreeBSD.org>
Cc:        current@FreeBSD.org
Subject:   Re: sparc64 tinderbox failure
Message-ID:  <20020711005344.F89841@espresso.q9media.com>
In-Reply-To: <20020711011926.GA7476@hades.hell.gr>; from keramida@FreeBSD.org on Thu, Jul 11, 2002 at 04:19:26AM %2B0300
References:  <200207100958.g6A9wFmY072199@bowie.private> <20020710172346.GB1118@hades.hell.gr> <xzpadoznvcv.fsf@flood.ping.uio.no> <200207102122.g6ALMCi1004528@apollo.backplane.com> <20020710212942.GC4189@hades.hell.gr> <20020711011926.GA7476@hades.hell.gr>

next in thread | previous in thread | raw e-mail | index | archive | help

--Kj7319i9nmIyA2yE
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Giorgos Keramidas <keramida@FreeBSD.org> 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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020711005344.F89841>