svn commit: r363610 - stable/12/sys/modules
Mark Johnston
markj at FreeBSD.org
Mon Jul 27 15:09:08 UTC 2020
Author: markj
Date: Mon Jul 27 15:09:07 2020
New Revision: 363610
URL: https://svnweb.freebsd.org/changeset/base/363610
Log:
Update the expression used to decide whether to build sctp.ko.
This is a direct commit to stable/12.
Reported by: Jenkins
Modified:
stable/12/sys/modules/Makefile
Modified: stable/12/sys/modules/Makefile
==============================================================================
--- stable/12/sys/modules/Makefile Mon Jul 27 14:41:23 2020 (r363609)
+++ stable/12/sys/modules/Makefile Mon Jul 27 15:09:07 2020 (r363610)
@@ -462,7 +462,7 @@ _ipfw_pmod= ipfw_pmod
.if ${MK_IPSEC_SUPPORT} != "no"
_ipsec= ipsec
.endif
-.if ${KERN_OPTS:MSCTP_SUPPORT} || ${KERN_OPTS:MSCTP}
+.if ${MK_SCTP_SUPPORT} != "no" || ${MK_SCTP} != "no"
_sctp= sctp
.endif
.endif
More information about the svn-src-stable
mailing list