diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-09 15:49:49 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-09 15:49:49 +0000 |
commit | bf575a9ff1e92e21bb75a27ecf3d38be5aff5111 (patch) | |
tree | 9be337fa0913766ecfbcf354b4bcf231e9ecd362 /regress | |
parent | fca63952c27a4663ea512544e1aed3a5851cd880 (diff) |
Print reminder to install OpenSSL 1.1 if it's not present in accordance
with bsd.regress.mk.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.sbin/rpki-client/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/usr.sbin/rpki-client/Makefile b/regress/usr.sbin/rpki-client/Makefile index e3d651a65a9..ebbd0be00af 100644 --- a/regress/usr.sbin/rpki-client/Makefile +++ b/regress/usr.sbin/rpki-client/Makefile @@ -1,8 +1,12 @@ -# $OpenBSD: Makefile,v 1.9 2020/11/09 15:43:46 tb Exp $ +# $OpenBSD: Makefile,v 1.10 2020/11/09 15:49:48 tb Exp $ SUBDIR += libressl .if exists(/usr/local/bin/eopenssl11) SUBDIR += openssl11 +.else +.END: + @echo 'Run "pkg_add openssl--%1.1" to run tests against OpenSSL 1.1' + @echo SKIPPED .endif .include <bsd.subdir.mk> |