Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Dec 2017 01:14:12 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326504 - head/stand
Message-ID:  <201712040114.vB41ECVk078348@repo.freebsd.org>

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



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