Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Mar 2013 21:45:49 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r248353 - stable/9/share/info
Message-ID:  <201303152145.r2FLjnol080134@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Fri Mar 15 21:45:49 2013
New Revision: 248353
URL: http://svnweb.freebsd.org/changeset/base/248353

Log:
  MFC r245753:
  
  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

Modified:
  stable/9/share/info/Makefile
Directory Properties:
  stable/9/share/info/   (props changed)

Modified: stable/9/share/info/Makefile
==============================================================================
--- stable/9/share/info/Makefile	Fri Mar 15 21:32:40 2013	(r248352)
+++ stable/9/share/info/Makefile	Fri Mar 15 21:45:49 2013	(r248353)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303152145.r2FLjnol080134>