diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-02-01 15:38:58 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-02-01 15:38:58 +0000 |
commit | 3969eb6d6869187a2fed616a1299d15b74223147 (patch) | |
tree | 8a810b2773a7f9c146fa5d59ff26ba5131581b05 /regress/lib/libssl/interop | |
parent | d3cc5a704d206f3b494b61d70047f21614ae8075 (diff) |
Switch from eopenssl to eopenssl30. Missed in both previous commits
for some reason.
Diffstat (limited to 'regress/lib/libssl/interop')
-rw-r--r-- | regress/lib/libssl/interop/netcat/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libssl/interop/netcat/Makefile b/regress/lib/libssl/interop/netcat/Makefile index f337d4aae8b..9cf10417af0 100644 --- a/regress/lib/libssl/interop/netcat/Makefile +++ b/regress/lib/libssl/interop/netcat/Makefile @@ -1,12 +1,12 @@ -# $OpenBSD: Makefile,v 1.5 2020/12/17 00:51:11 bluhm Exp $ +# $OpenBSD: Makefile,v 1.6 2023/02/01 15:38:57 tb Exp $ LIBRARIES = libressl -.if exists(/usr/local/bin/eopenssl) -LIBRARIES += openssl -.endif .if exists(/usr/local/bin/eopenssl11) LIBRARIES += openssl11 .endif +.if exists(/usr/local/bin/eopenssl30) +LIBRARIES += openssl30 +.endif # run netcat server and connect with test client |