We should be explicit about owner/group when using install, so this also
works correctly with noperm. Ok?

natano


Index: usr.bin/mg/Makefile
===================================================================
RCS file: /cvs/src/usr.bin/mg/Makefile,v
retrieving revision 1.31
diff -u -p -r1.31 Makefile
--- usr.bin/mg/Makefile 29 Sep 2015 03:50:58 -0000      1.31
+++ usr.bin/mg/Makefile 10 Sep 2016 17:45:11 -0000
@@ -24,8 +24,8 @@ SRCS= autoexec.c basic.c bell.c buffer.c
 SRCS+= cmode.c cscope.c dired.c grep.c tags.c theo.c
 
 afterinstall:
-       ${INSTALL} -d ${DESTDIR}${DOCDIR}/mg
-       ${INSTALL} -m ${DOCMODE} -c ${.CURDIR}/tutorial \
-               ${DESTDIR}${DOCDIR}/mg
+       ${INSTALL} -d -o root -g wheel ${DESTDIR}${DOCDIR}/mg
+       ${INSTALL} ${INSTALL_COPY} -o root -g wheel -m ${DOCMODE} \
+           ${.CURDIR}/tutorial ${DESTDIR}${DOCDIR}/mg
 
 .include <bsd.prog.mk>

Reply via email to