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/ramdisk | |
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/ramdisk')
-rw-r--r-- | distrib/ramdisk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/ramdisk/Makefile b/distrib/ramdisk/Makefile index 28600c57b3b..ba7ae4adb12 100644 --- a/distrib/ramdisk/Makefile +++ b/distrib/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.47 2016/10/14 18:44:20 deraadt Exp $ +# $OpenBSD: Makefile,v 1.48 2017/06/03 22:25:19 deraadt Exp $ REV= ${OSrev} @@ -128,6 +128,7 @@ clean cleandir: .ifdef RELEASEDIR beforeinstall: cp bsd.rd ${RELEASEDIR} + chmod a+r ${RELEASEDIR}/bsd.rd .ifdef MAKEFLOPPY cp ${FLOPPY} ${RELEASEDIR} .endif # MAKEFLOPPY |