diff options
author | marius <marius@FreeBSD.org> | 2005-08-27 20:51:12 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2005-08-27 20:51:12 +0000 |
commit | a128a96ae0b0523c9ef6047d09d3ef512f9c76a9 (patch) | |
tree | 65acdba0ae47a3bfa7a03bef689bbd5c09b1dd31 /sbin | |
parent | 594129d55721a98a25bfab97ba4b5eb89b9a20e6 (diff) | |
download | FreeBSD-src-a128a96ae0b0523c9ef6047d09d3ef512f9c76a9.zip FreeBSD-src-a128a96ae0b0523c9ef6047d09d3ef512f9c76a9.tar.gz |
As with NO_CRYPT, don't try to compile geli(8) when NO_OPENSSL is defined
either.
MFC after: 1 week
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/geom/class/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/geom/class/Makefile b/sbin/geom/class/Makefile index 0828f70..e172bbf 100644 --- a/sbin/geom/class/Makefile +++ b/sbin/geom/class/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ SUBDIR= concat -.if !defined(NO_CRYPT) +.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) SUBDIR+=eli .endif SUBDIR+=label |