diff options
author | 2020-11-09 15:49:48 +0000 | |
---|---|---|
committer | 2020-11-09 15:49:48 +0000 | |
commit | d157145dfbd2d79e9a8b1ea52117c42996d9f5d6 (patch) | |
tree | fde29b4110a54fced5ca506b0a39675218c7a3b8 | |
parent | Rework MAC initialization code. Properly turn comphy off and on again (diff) | |
download | wireguard-openbsd-d157145dfbd2d79e9a8b1ea52117c42996d9f5d6.tar.xz wireguard-openbsd-d157145dfbd2d79e9a8b1ea52117c42996d9f5d6.zip |
Print reminder to install OpenSSL 1.1 if it's not present in accordance
with bsd.regress.mk.
-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> |