diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2019-01-24 23:27:17 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2019-01-24 23:27:17 +0000 |
commit | 6a583bbe6f30ab5dc54cf72dcb123d91a84106c6 (patch) | |
tree | e306775ff064d64cfa034bb82ad9cc367ee98428 /distrib/armv7 | |
parent | 274368f80ce3528d9bb360c1aa0b9535aaec2f11 (diff) |
kernels in compile dirs are readonly, and the bsd.rd we created has
tracked that permission. Make the copy in $RELEASEDIR a+r
ok deraadt@
Diffstat (limited to 'distrib/armv7')
-rw-r--r-- | distrib/armv7/ramdisk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/armv7/ramdisk/Makefile b/distrib/armv7/ramdisk/Makefile index 8a31c944c19..09deb22e836 100644 --- a/distrib/armv7/ramdisk/Makefile +++ b/distrib/armv7/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2017/09/01 04:40:40 jsg Exp $ +# $OpenBSD: Makefile,v 1.18 2019/01/24 23:27:16 naddy Exp $ REV= ${OSrev} @@ -83,6 +83,7 @@ clean cleandir: .ifdef RELEASEDIR install: cp ${ALLBSDRD} ${RELEASEDIR} + cd ${RELEASEDIR} && chmod a+r ${ALLBSDRD} .endif # RELEASEDIR .include <bsd.obj.mk> |