From: deraadt Date: Sat, 3 Jun 2017 22:23:47 +0000 (+0000) Subject: kernels in compile dirs are og-rwx, so need to make them readable in X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=57de7aeeab217a9f5abe1f5b74709ca995905038;p=openbsd kernels in compile dirs are og-rwx, so need to make them readable in $RELEASEDIR ok tb rpe --- diff --git a/etc/Makefile b/etc/Makefile index 2c5a6e59864..e84927d7a82 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.455 2017/05/29 10:24:06 florian Exp $ +# $OpenBSD: Makefile,v 1.456 2017/06/03 22:23:47 deraadt Exp $ .include @@ -27,6 +27,7 @@ ALL_KERNELS += $K kernels: ${ALL_KERNELS} .for CONF K in ${KERNELS} cp ../sys/arch/${MACHINE}/compile/${CONF}/obj/bsd ${RELEASEDIR}/$K + chmod a+r ${RELEASEDIR}/$K .endfor # -rw-r--r--