svn commit: r360509 - head/tests/sys/geom/class

Ed Maste emaste at FreeBSD.org
Thu Apr 30 21:09:01 UTC 2020


Author: emaste
Date: Thu Apr 30 21:09:01 2020
New Revision: 360509
URL: https://svnweb.freebsd.org/changeset/base/360509

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

Modified:
  head/tests/sys/geom/class/Makefile

Modified: head/tests/sys/geom/class/Makefile
==============================================================================
--- head/tests/sys/geom/class/Makefile	Thu Apr 30 21:08:59 2020	(r360508)
+++ head/tests/sys/geom/class/Makefile	Thu Apr 30 21:09:01 2020	(r360509)
@@ -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-head mailing list