diff options
author | 1998-10-08 17:32:00 +0000 | |
---|---|---|
committer | 1998-10-08 17:32:00 +0000 | |
commit | e1a4b69b2c47888e340e82ff75b51ba6f51897ed (patch) | |
tree | c642ff9f122033c214b0719f3bbb5481f220c64e /lib/libssl/ssl | |
parent | Updated for support of PNIC boards (diff) | |
download | wireguard-openbsd-e1a4b69b2c47888e340e82ff75b51ba6f51897ed.tar.xz wireguard-openbsd-e1a4b69b2c47888e340e82ff75b51ba6f51897ed.zip |
create /usr/include/ssl before trying to copy files into it.
If you've had a recent build fail check /usr/include/ssl.
if it is a file instead of a directory remove it and try again
after updating with these changes.
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index facbfa9ca7a..95b4b42616c 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -64,6 +64,7 @@ HDRS= ssl.h ssl2.h ssl3.h ssl23.h tls1.h .PATH: ${LSSL_SRC} includes: + @install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${DESTDIR}/usr/include/ssl @cd ${LSSL_SRC}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/ssl/`basename $$i` || \ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ |