summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libcrypto/Makefile8
-rw-r--r--usr.sbin/ikectl/Makefile4
2 files changed, 6 insertions, 6 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
diff --git a/usr.sbin/ikectl/Makefile b/usr.sbin/ikectl/Makefile
index 8c50ab2278b..4b9abb5999d 100644
--- a/usr.sbin/ikectl/Makefile
+++ b/usr.sbin/ikectl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 2016/03/01 13:54:39 gsoares Exp $
+# $OpenBSD: Makefile,v 1.7 2016/09/11 14:31:02 natano Exp $
.PATH: ${.CURDIR}/../../sbin/iked
@@ -16,7 +16,7 @@ CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
distribution:
- ${INSTALL} -C -g wheel -m 0644 ${.CURDIR}/ikeca.cnf \
+ ${INSTALL} -C -o root -g wheel -m 0644 ${.CURDIR}/ikeca.cnf \
${DESTDIR}/etc/ssl/ikeca.cnf
.include <bsd.prog.mk>