svn commit: r335911 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Tue Jul 3 21:15:48 UTC 2018


Author: bdrewery
Date: Tue Jul  3 21:15:47 2018
New Revision: 335911
URL: https://svnweb.freebsd.org/changeset/base/335911

Log:
  Need offset.inc generated early if MODULE_TIED is defined.

Modified:
  head/sys/conf/kmod.mk

Modified: head/sys/conf/kmod.mk
==============================================================================
--- head/sys/conf/kmod.mk	Tue Jul  3 21:02:25 2018	(r335910)
+++ head/sys/conf/kmod.mk	Tue Jul  3 21:15:47 2018	(r335911)
@@ -467,6 +467,9 @@ CLEANFILES+=	assym.inc
 DEPENDOBJS+=	genassym.o
 DPSRCS+=	offset.inc
 .endif
+.if defined(MODULE_TIED)
+DPSRCS+=	offset.inc
+.endif
 .if !empty(SRCS:Moffset.inc) || !empty(DPSRCS:Moffset.inc)
 CLEANFILES+=	offset.inc genoffset.o
 DEPENDOBJS+=	genoffset.o


More information about the svn-src-head mailing list