svn commit: r263665 - in stable: 10 7 8 9

Dimitry Andric dim at FreeBSD.org
Sun Mar 23 14:18:41 UTC 2014


Author: dim
Date: Sun Mar 23 14:18:40 2014
New Revision: 263665
URL: http://svnweb.freebsd.org/changeset/base/263665

Log:
  Turn off warnings for building aicasm.  Various versions of yacc exist,
  which can result in different warnings-as-errors in this tool, but these
  are all completely harmless.
  
  This is a direct commit to stable/7, stable/8, stable/9 and stable/10,
  since this kernel build tool has already been removed in head.

Modified:
  stable/8/Makefile.inc1

Changes in other areas also in this revision:
Modified:
  stable/10/Makefile.inc1
  stable/7/Makefile.inc1
  stable/9/Makefile.inc1

Modified: stable/8/Makefile.inc1
==============================================================================
--- stable/8/Makefile.inc1	Sun Mar 23 14:06:09 2014	(r263664)
+++ stable/8/Makefile.inc1	Sun Mar 23 14:18:40 2014	(r263665)
@@ -779,7 +779,7 @@ buildkernel:
 	cd ${KRNLOBJDIR}/${_kernel}; \
 	    PATH=${BPATH}:${PATH} \
 	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
-	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \
+	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
 	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
 # XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
@@ -787,7 +787,7 @@ buildkernel:
 	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
 	    PATH=${BPATH}:${PATH} \
 	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
-	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target}
+	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF ${target}
 .endfor
 .endif
 .if !defined(NO_KERNELDEPEND)


More information about the svn-src-all mailing list