diff options
author | beck <> | 1999-03-16 07:25:13 +0000 |
---|---|---|
committer | beck <> | 1999-03-16 07:25:13 +0000 |
commit | 27393bb10cc7b89961602bda4b6a0f92487a8bb5 (patch) | |
tree | e0a82d0d7185a2f7f749803e3328196b0d437fd1 /src/lib/libssl/Makefile | |
parent | 33bdaa3a00a8b55e1a86100fcb7419c4c3491269 (diff) | |
download | openbsd-27393bb10cc7b89961602bda4b6a0f92487a8bb5.tar.gz openbsd-27393bb10cc7b89961602bda4b6a0f92487a8bb5.tar.bz2 openbsd-27393bb10cc7b89961602bda4b6a0f92487a8bb5.zip |
Add install of reasonable default ssleay.cnf file
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 38f2b0ae94..683e40e63b 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -8,4 +8,10 @@ SUBDIR= crypto-patent ssl-patent | |||
8 | SUBDIR= crypto ssl | 8 | SUBDIR= crypto ssl |
9 | .endif | 9 | .endif |
10 | 10 | ||
11 | distribution: | ||
12 | @echo "Installing ${DESTDIR}/etc/ssl/lib/ssleay.cnf"; \ | ||
13 | ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ | ||
14 | ${.CURDIR}/ssleay.cnf ${DESTDIR}/etc/ssl/lib/ssleay.cnf; | ||
15 | |||
11 | .include <bsd.subdir.mk> | 16 | .include <bsd.subdir.mk> |
17 | |||