diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-03 22:25:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-03 22:25:20 +0000 |
commit | d4412e346dad76e3f90922f0e3f36a79f45e7e6c (patch) | |
tree | ae06441b47bb718f9d84fcc23e9e17cf4d63527c /distrib/i386 | |
parent | 92c8252d1273f3b077f84515b2b07e9036e639de (diff) |
kernels in compile dirs are readonly, and the bsd.rd we created has
tracked that permission. Make the copy in $RELEASEDIR a+r
Diffstat (limited to 'distrib/i386')
-rw-r--r-- | distrib/i386/common/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/i386/common/Makefile.inc b/distrib/i386/common/Makefile.inc index 9e2044916e2..70e883ff17c 100644 --- a/distrib/i386/common/Makefile.inc +++ b/distrib/i386/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.41 2016/12/30 22:32:25 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.42 2017/06/03 22:25:19 deraadt Exp $ TOP= ${.CURDIR}/.. @@ -97,6 +97,7 @@ rdsetroot: ${TOP}/../common/elfrdsetroot.c install: .ifndef NOBSDRD cp bsd.rd ${RELEASEDIR}/bsd.rd + chmod a+r ${RELEASEDIR}/bsd.rd .endif .ifndef NOFS cp ${FS} ${RELEASEDIR}/${FS} |