From 7102f5954bfeed19684fe808d4a67488830a43e2 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Mon, 21 Jan 2013 22:54:43 +0000 Subject: [PATCH] Install the template info directory with mode 644 instead of 444 to allow it to be updated by its owner without resorting to privilege. This is required by upcoming changes to allow installworld to work as a non-root user. Sponsored by: DARPA, AFRL Reviewed by: ian, ray, rpaulo --- share/info/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/info/Makefile b/share/info/Makefile index 0110e02ca151..6c09adb5ce43 100644 --- a/share/info/Makefile +++ b/share/info/Makefile @@ -17,6 +17,6 @@ beforeinstall: @exit 3; .endif .if !exists(${DESTDIR}${INFODIR}/dir) - ${INSTALL} -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} \ + ${INSTALL} -o ${INFOOWN} -g ${INFOGRP} -m 644 \ dir-tmpl ${DESTDIR}${INFODIR}/dir .endif