Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Aug 2019 18:26:35 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r351434 - head/sys/conf
Message-ID:  <201908231826.x7NIQZNj075088@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



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