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
This commit is contained in:
John Baldwin 2019-08-23 18:26:34 +00:00
parent 7574e8572d
commit 95f5211e9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=351434

View File

@ -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"