diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1999-03-16 07:25:14 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1999-03-16 07:25:14 +0000 |
commit | 83cf9972f605c8f284dddd58670b6d54d188f24a (patch) | |
tree | 0aae92cf34c130820bbc7e869d93b910fdbfa77e /lib/libssl/Makefile | |
parent | a1a02754e9de15052e17465e7eb40ab771b603cb (diff) |
Add install of reasonable default ssleay.cnf file
Diffstat (limited to 'lib/libssl/Makefile')
-rw-r--r-- | lib/libssl/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile index 38f2b0ae946..683e40e63bd 100644 --- a/lib/libssl/Makefile +++ b/lib/libssl/Makefile @@ -8,4 +8,10 @@ SUBDIR= crypto-patent ssl-patent SUBDIR= crypto ssl .endif +distribution: + @echo "Installing ${DESTDIR}/etc/ssl/lib/ssleay.cnf"; \ + ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ + ${.CURDIR}/ssleay.cnf ${DESTDIR}/etc/ssl/lib/ssleay.cnf; + .include <bsd.subdir.mk> + |