diff options
author | kris <kris@FreeBSD.org> | 2000-05-18 05:21:50 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-05-18 05:21:50 +0000 |
commit | a87d9ada5cfef30b19e90af3ae6ba75304d1eb52 (patch) | |
tree | 3062778dff67ab0f0b88fc0e3c7813b158de02f0 /etc/Makefile | |
parent | 621990cd684e52fdf924e5b909a6a79921c2f7c1 (diff) | |
download | FreeBSD-src-a87d9ada5cfef30b19e90af3ae6ba75304d1eb52.zip FreeBSD-src-a87d9ada5cfef30b19e90af3ae6ba75304d1eb52.tar.gz |
Install /etc/ssl/openssl.cnf
Submitted by: Doug Barton <DougB@gorean.org>
Forgotten by: kris
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile index bac210c..f749c0e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -26,6 +26,10 @@ SSH= ${.CURDIR}/../crypto/openssh/ssh_config \ ${.CURDIR}/../crypto/openssh/sshd_config .endif +.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL) +SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf +.endif + # -rwxr-xr-x root.wheel, for the new cron root.wheel BIN2= netstart pccard_ether rc.suspend rc.resume @@ -77,6 +81,10 @@ distribution: (cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSH} \ ${DESTDIR}/etc/ssh ) .endif +.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL) + (cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSL} \ + ${DESTDIR}/etc/ssl ) +.endif .if !defined(NO_MAKEDEV) (cd ${DESTDIR}/dev; sh MAKEDEV all) .endif |