svn commit: r357774 - head/tools/kerneldoc/subsys

Alexander Leidinger netchild at FreeBSD.org
Tue Feb 11 19:40:00 UTC 2020


Author: netchild
Date: Tue Feb 11 19:39:59 2020
New Revision: 357774
URL: https://svnweb.freebsd.org/changeset/base/357774

Log:
  Fix duplicate target warning.

Modified:
  head/tools/kerneldoc/subsys/Makefile

Modified: head/tools/kerneldoc/subsys/Makefile
==============================================================================
--- head/tools/kerneldoc/subsys/Makefile	Tue Feb 11 19:13:34 2020	(r357773)
+++ head/tools/kerneldoc/subsys/Makefile	Tue Feb 11 19:39:59 2020	(r357774)
@@ -10,7 +10,7 @@ TARGET_ARCH?=	${MACHINE_ARCH}
 S?=/usr/src/sys
 LOCALBASE?=/usr/local
 
-MFILES!= find ${S} -name \*.m | sed -e 's:${S}/::g'
+MFILES!= find ${S} -name \*.m | egrep '/(dev|libkern|kgssapi|opencrypto|isa|geom|kern|xen|net|${TARGET_ARCH})/' | sed -e 's:${S}/::g'
 HFILES=	${MFILES:T:S/.m$/.h/}
 AWK?=	awk
 


More information about the svn-src-all mailing list