From owner-svn-src-stable@FreeBSD.ORG Fri Mar 15 21:45:49 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D8E98B9E; Fri, 15 Mar 2013 21:45:49 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B2FC37B3; Fri, 15 Mar 2013 21:45:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2FLjnIP080135; Fri, 15 Mar 2013 21:45:49 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2FLjnol080134; Fri, 15 Mar 2013 21:45:49 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201303152145.r2FLjnol080134@svn.freebsd.org> From: Brooks Davis Date: Fri, 15 Mar 2013 21:45:49 +0000 (UTC) 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 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Mar 2013 21:45:49 -0000 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