svn commit: r326504 - head/stand

Warner Losh imp at FreeBSD.org
Mon Dec 4 01:14:13 UTC 2017


Author: imp
Date: Mon Dec  4 01:14:12 2017
New Revision: 326504
URL: https://svnweb.freebsd.org/changeset/base/326504

Log:
  Switch to proper MK_LOADER_GELI tests.
  
  Submitted by: peter@

Modified:
  head/stand/Makefile.amd64
  head/stand/Makefile.i386

Modified: head/stand/Makefile.amd64
==============================================================================
--- head/stand/Makefile.amd64	Sun Dec  3 22:02:30 2017	(r326503)
+++ head/stand/Makefile.amd64	Mon Dec  4 01:14:12 2017	(r326504)
@@ -11,7 +11,7 @@ SUBDIR+=		ficl32
 SUBDIR+=		efi
 SUBDIR+=		userboot
 
-.if ${LOADER_GELI_SUPPORT:Uyes} == "yes"
+.if ${MK_LOADER_GELI} == "yes"
 SUBDIR+=		geli
 .endif
 

Modified: head/stand/Makefile.i386
==============================================================================
--- head/stand/Makefile.i386	Sun Dec  3 22:02:30 2017	(r326503)
+++ head/stand/Makefile.i386	Mon Dec  4 01:14:12 2017	(r326504)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-.if ${LOADER_GELI_SUPPORT:Uyes} == "yes"
+.if ${MK_LOADER_GELI} == "yes"
 SUBDIR+=		geli
 .endif
 .if ${MK_ZFS} != "no"


More information about the svn-src-all mailing list