diff options
author | Martin Natano <natano@cvs.openbsd.org> | 2016-09-11 14:31:03 +0000 |
---|---|---|
committer | Martin Natano <natano@cvs.openbsd.org> | 2016-09-11 14:31:03 +0000 |
commit | f19275cd4af5e481c94b8ef47e8a0b230e4343f2 (patch) | |
tree | d0be98e2c25eef651a2a376b28426254aa1d1b61 /lib | |
parent | aa9d078ea90a862b6c1f1fdf0fc59595e5c7c7c9 (diff) |
Files in /etc/ssl belong to root. ok deraadt
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index 411acf2f0b1..71c3e89fb65 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2016/09/04 17:59:26 jsing Exp $ +# $OpenBSD: Makefile,v 1.5 2016/09/11 14:31:02 natano Exp $ LIB= crypto @@ -424,11 +424,11 @@ all beforedepend: ${GENERATED} distribution: - ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/openssl.cnf ${DESTDIR}/etc/ssl/openssl.cnf && \ - ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/cert.pem ${DESTDIR}/etc/ssl/cert.pem && \ - ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/x509v3.cnf ${DESTDIR}/etc/ssl/x509v3.cnf ${PC_FILES}: opensslv.h |