diff options
author | dinoex <dinoex@FreeBSD.org> | 2004-04-09 14:22:08 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2004-04-09 14:22:08 +0800 |
commit | 1c43bdd22dfa6ef6562ac27834c4357e88960b35 (patch) | |
tree | e079fe26410f148f7f8c933eb792b30f2b357342 | |
parent | a64548a9af7321d89f9bea1afaabf4154b8b2638 (diff) | |
download | freebsd-ports-graphics-1c43bdd22dfa6ef6562ac27834c4357e88960b35.tar.gz freebsd-ports-graphics-1c43bdd22dfa6ef6562ac27834c4357e88960b35.tar.zst freebsd-ports-graphics-1c43bdd22dfa6ef6562ac27834c4357e88960b35.zip |
- Fix check for dynamic root.
PR: 65346
Submitted by: edwin
-rw-r--r-- | security/openssl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 1ed2325517f..8ba651d0bcc 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -862,7 +862,7 @@ INSTALLS_SHLIB= yes .endif .if defined(OPENSSL_OVERWRITE_BASE) -.if exists(/lib/libcrypto.so) +.if exists(/lib/libcrypto.so) || exists(/lib/libcrypto.so.3) pre-everything:: @${ECHO_CMD} "#" @${ECHO_CMD} "# this ports does not support the dynamic root" |