diff options
author | dinoex <dinoex@FreeBSD.org> | 2007-08-06 18:39:24 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2007-08-06 18:39:24 +0800 |
commit | 5396a5a8874b13b240e54f68bbec8cfe0c42543c (patch) | |
tree | b903aae542a1171bf95f2a57815f3538d37c1234 /security | |
parent | 9aebc68c02956efa0482465641312b57e1fdd0fd (diff) | |
download | freebsd-ports-gnome-5396a5a8874b13b240e54f68bbec8cfe0c42543c.tar.gz freebsd-ports-gnome-5396a5a8874b13b240e54f68bbec8cfe0c42543c.tar.zst freebsd-ports-gnome-5396a5a8874b13b240e54f68bbec8cfe0c42543c.zip |
- fix DESTDIR for config stage
Diffstat (limited to 'security')
-rw-r--r-- | security/openssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index b75435afcf13..cfa32b67f8be 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -886,7 +886,7 @@ MLINKS+= \ .include <bsd.port.pre.mk> -OPENSSL_BASE_SONAME!= readlink /usr/lib/libcrypto.so || true +OPENSSL_BASE_SONAME!= readlink ${DESTDIR}/usr/lib/libcrypto.so || true OPENSSL_SHLIBVER_BASE= ${OPENSSL_BASE_SONAME:E} OPENSSL_BASE_SOPATH= ${OPENSSL_BASE_SONAME:H} @@ -937,7 +937,7 @@ pre-everything:: @${FALSE} .endif -.if exists(/usr/lib/libcrypto.so.3) && ${OPENSSL_SHLIBVER} != 3 +.if exists(${DESTDIR}/usr/lib/libcrypto.so.3) && ${OPENSSL_SHLIBVER} != 3 pre-everything:: @${ECHO_CMD} "#" @${ECHO_CMD} "# this ports conflicts with your base system" |