svn commit: r351434 - head/sys/conf

John Baldwin jhb at FreeBSD.org
Fri Aug 23 18:26:35 UTC 2019


Author: jhb
Date: Fri Aug 23 18:26:34 2019
New Revision: 351434
URL: https://svnweb.freebsd.org/changeset/base/351434

Log:
  Fix universe to include arm LINT kernel configs.
  
  Strip comments from the NOTES.armv[57] files as is done for other
  NOTES files when building the corresponding LINT configs.  Without
  this, the LINT configs contained the NO_UNIVERSE comment from the
  NOTES.armv[57] files.
  
  Reviewed by:	imp
  MFC after:	1 week
  Sponsored by:	Netflix
  Differential Revision:	https://reviews.freebsd.org/D21264

Modified:
  head/sys/conf/makeLINT.mk

Modified: head/sys/conf/makeLINT.mk
==============================================================================
--- head/sys/conf/makeLINT.mk	Fri Aug 23 17:43:41 2019	(r351433)
+++ head/sys/conf/makeLINT.mk	Fri Aug 23 18:26:34 2019	(r351434)
@@ -48,8 +48,10 @@ LINT: ${NOTES} ${MAKELINT_SED}
 	echo "nodevice netmap"		>> ${.TARGET}-NOIP
 .endif
 .if ${TARGET} == "arm"
-	cat ${.TARGET} ${.CURDIR}/NOTES.armv5 > ${.TARGET}-V5
-	cat ${.TARGET} ${.CURDIR}/NOTES.armv7 > ${.TARGET}-V7
+	cat ${NOTES} ${.CURDIR}/NOTES.armv5 | sed -E -n -f ${MAKELINT_SED} > \
+	    ${.TARGET}-V5
+	cat ${NOTES} ${.CURDIR}/NOTES.armv7 | sed -E -n -f ${MAKELINT_SED} > \
+	    ${.TARGET}-V7
 	rm ${.TARGET}
 .endif
 .if ${TARGET} == "mips"


More information about the svn-src-head mailing list