diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 1998-10-08 17:51:50 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 1998-10-08 17:51:50 +0000 |
commit | 9ea1222d1221fec7263a2f2cdacd2c536c9c6c6e (patch) | |
tree | d9b45b095e615c6707b661636534a377af5e897e | |
parent | 5a3d30b5118b795b5b2a2b1b3cadaa5e716e5a3d (diff) |
back out previous change. Theo says:
marc, this is wrong.
mtree builds that directory. we never do mkdir's in makefiles.
You also should not have modified ANY of those Makefiles, since they are
part of the ssl distribution. please undo this change.
And I say: developers, be sure to do a mkdir /usr/include/ssl before
a bake build as include files are installed as the 2nd step.
-rw-r--r-- | lib/libssl/crypto-patent/Makefile | 3 | ||||
-rw-r--r-- | lib/libssl/crypto/Makefile | 3 | ||||
-rw-r--r-- | lib/libssl/ssl-patent/Makefile | 1 | ||||
-rw-r--r-- | lib/libssl/ssl/Makefile | 1 |
4 files changed, 2 insertions, 6 deletions
diff --git a/lib/libssl/crypto-patent/Makefile b/lib/libssl/crypto-patent/Makefile index ba6d5aaa191..74b98926f17 100644 --- a/lib/libssl/crypto-patent/Makefile +++ b/lib/libssl/crypto-patent/Makefile @@ -149,13 +149,12 @@ HDRS= asn1/asn1.h asn1/asn1_mac.h bf/blowfish.h bio/bio.h \ ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 ${LCRYPTO_SRC}/idea ${LCRYPTO_SRC}/bf \ ${LCRYPTO_SRC}/cast ${LCRYPTO_SRC}/bn ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/dsa \ ${LCRYPTO_SRC}/dh ${LCRYPTO_SRC}/buffer ${LCRYPTO_SRC}/bio ${LCRYPTO_SRC}/stack \ - ${LCRYPTO_SRC}/lhash ${LCRYPTO_SRC}/rand ${LCRYPTO_SRC}/err ${LCRYPTO_SRC}/objects \ + ${LCRYPTO_SRC}/lhash ${LCRYPTO_SRC}/rand ${LCRYPTO_SRC}/err ${LCRYPTO_SRC}/objects \ ${LCRYPTO_SRC}/evp ${LCRYPTO_SRC}/pem ${LCRYPTO_SRC}/asn1 ${LCRYPTO_SRC}/asn1 \ ${LCRYPTO_SRC}/x509 ${LCRYPTO_SRC}/conf txt_db/txt_db.c ${LCRYPTO_SRC}/pkcs7 \ ${LCRYPTO_SRC}/txt_db ${LCRYPTO_SRC} includes: - @install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${DESTDIR}/usr/include/ssl @cd ${LCRYPTO_SRC}; for i in $(HDRS); do \ j="cmp -s ${LCRYPTO_SRC}/$$i \ ${DESTDIR}/usr/include/ssl/`basename $$i` || \ diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index 2b4ef204a10..516609d8d15 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -149,13 +149,12 @@ HDRS= asn1/asn1.h asn1/asn1_mac.h bf/blowfish.h bio/bio.h \ ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 ${LCRYPTO_SRC}/idea ${LCRYPTO_SRC}/bf \ ${LCRYPTO_SRC}/cast ${LCRYPTO_SRC}/bn ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/dsa \ ${LCRYPTO_SRC}/dh ${LCRYPTO_SRC}/buffer ${LCRYPTO_SRC}/bio ${LCRYPTO_SRC}/stack \ - ${LCRYPTO_SRC}/lhash ${LCRYPTO_SRC}/rand ${LCRYPTO_SRC}/err ${LCRYPTO_SRC}/objects \ + ${LCRYPTO_SRC}/lhash ${LCRYPTO_SRC}/rand ${LCRYPTO_SRC}/err ${LCRYPTO_SRC}/objects \ ${LCRYPTO_SRC}/evp ${LCRYPTO_SRC}/pem ${LCRYPTO_SRC}/asn1 ${LCRYPTO_SRC}/asn1 \ ${LCRYPTO_SRC}/x509 ${LCRYPTO_SRC}/conf txt_db/txt_db.c ${LCRYPTO_SRC}/pkcs7 \ ${LCRYPTO_SRC}/txt_db ${LCRYPTO_SRC} includes: - @install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${DESTDIR}/usr/include/ssl @cd ${LCRYPTO_SRC}; for i in $(HDRS); do \ j="cmp -s ${LCRYPTO_SRC}/$$i \ ${DESTDIR}/usr/include/ssl/`basename $$i` || \ diff --git a/lib/libssl/ssl-patent/Makefile b/lib/libssl/ssl-patent/Makefile index 2ed039602f8..09e9de7fb47 100644 --- a/lib/libssl/ssl-patent/Makefile +++ b/lib/libssl/ssl-patent/Makefile @@ -64,7 +64,6 @@ 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 \ diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 95b4b42616c..facbfa9ca7a 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -64,7 +64,6 @@ 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 \ |