diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-29 23:29:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-29 23:29:41 +0000 |
commit | 416121ed686dea64a7d78660970c9e82b4e85606 (patch) | |
tree | 7aa7f4e25ce8ad0f69d74f25879649842353a5eb /lib/libssl/crypto | |
parent | fb4131f63aa5e825b764bf620e3ba640ae7c340c (diff) |
create ${DESTDIR}/usr/include/ssl if it does not exist. This is needed because the mtree is done after "make includes"
Diffstat (limited to 'lib/libssl/crypto')
-rw-r--r-- | lib/libssl/crypto/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index e2c1c4f858a..9db529295b3 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -164,6 +164,7 @@ HDRS= asn1/asn1.h asn1/asn1_mac.h bf/blowfish.h bio/bio.h \ ${LCRYPTO_SRC}/txt_db ${LCRYPTO_SRC} includes: + @test -d ${DESTDIR}/usr/include/ssl || mkdir ${DESTDIR}/usr/include/ssl @d=`mktemp -d /tmp/libsslXXXXXXXXXX`; \ cd ${LCRYPTO_SRC}; for i in $(HDRS); do \ f=`basename $$i`; \ |