svn commit: r364320 - stable/12/tests/sys/geom/class

Ed Maste emaste at FreeBSD.org
Mon Aug 17 17:48:29 UTC 2020


Author: emaste
Date: Mon Aug 17 17:48:28 2020
New Revision: 364320
URL: https://svnweb.freebsd.org/changeset/base/364320

Log:
  MFC r360509: geli tests require OpenSSL - exclude them under WITHOUT_OPENSSL
  
  PR:		245931
  Submitted by:	The FreeBSD Foundation

Modified:
  stable/12/tests/sys/geom/class/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/tests/sys/geom/class/Makefile
==============================================================================
--- stable/12/tests/sys/geom/class/Makefile	Mon Aug 17 17:47:04 2020	(r364319)
+++ stable/12/tests/sys/geom/class/Makefile	Mon Aug 17 17:48:28 2020	(r364320)
@@ -1,11 +1,15 @@
 # $FreeBSD$
 
+.include <src.opts.mk>
+
 PACKAGE=	tests
 
 TESTSDIR=	${TESTSBASE}/sys/geom/class
 
 TESTS_SUBDIRS+=	concat
+.if ${MK_OPENSSL} != "no"
 TESTS_SUBDIRS+=	eli
+.endif
 TESTS_SUBDIRS+=	gate
 TESTS_SUBDIRS+=	mirror
 TESTS_SUBDIRS+=	multipath


More information about the svn-src-all mailing list