svn commit: r309954 - stable/11/share/mk

Baptiste Daroussin bapt at FreeBSD.org
Mon Dec 12 21:45:27 UTC 2016


Author: bapt
Date: Mon Dec 12 21:45:25 2016
New Revision: 309954
URL: https://svnweb.freebsd.org/changeset/base/309954

Log:
  MFC r309805:
  
  Make WITHOUT_CAPSICUM implying WITHOUT_CASPER
  
  PR:		214562
  Reported by:	dewayne at heuristicsystems.com.au

Modified:
  stable/11/share/mk/src.opts.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/mk/src.opts.mk
==============================================================================
--- stable/11/share/mk/src.opts.mk	Mon Dec 12 21:43:17 2016	(r309953)
+++ stable/11/share/mk/src.opts.mk	Mon Dec 12 21:45:25 2016	(r309954)
@@ -286,6 +286,10 @@ MK_${var}:=	no
 # Force some options off if their dependencies are off.
 # Order is somewhat important.
 #
+.if ${MK_CAPSICUM} == "no"
+MK_CASPER:=	no
+.endif
+
 .if ${MK_LIBPTHREAD} == "no"
 MK_LIBTHR:=	no
 .endif


More information about the svn-src-all mailing list