Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Jul 2020 15:09:07 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r363610 - stable/12/sys/modules
Message-ID:  <202007271509.06RF97wB000790@repo.freebsd.org>

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



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