Giorgos Keramidas <[EMAIL PROTECTED]> 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
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