diff mbox

Fix permissions in update_web_docs_svn

Message ID alpine.LNX.2.00.1111130014090.3570@gerinyyl.fvgr
State New
Headers show

Commit Message

Gerald Pfeifer Nov. 12, 2011, 11:18 p.m. UTC
Benjamin maintains the libstdc++ manuals under /onlinedocs on
gcc.gnu.org, but we keep running into permissions problems.

The patch below addresses this such that he, and others in the
gcc group with login access, can take care of such changes.

Unless there are any objections, I am planning on checking this
in.  (The script is generally run as gccadmin with group gcc.)
Affirmative notes welcome as well. :-)

Gerald


2011-11-02  Gerald Pfeifer  <gerald@pfeifer.com>

	* update_web_docs_svn: Make $DOCSDIR group writable after
	creating it.

Comments

Joseph Myers Nov. 13, 2011, 2:30 p.m. UTC | #1
On Sun, 13 Nov 2011, Gerald Pfeifer wrote:

> Benjamin maintains the libstdc++ manuals under /onlinedocs on
> gcc.gnu.org, but we keep running into permissions problems.
> 
> The patch below addresses this such that he, and others in the
> gcc group with login access, can take care of such changes.
> 
> Unless there are any objections, I am planning on checking this
> in.  (The script is generally run as gccadmin with group gcc.)
> Affirmative notes welcome as well. :-)

Seems fine to me.
Gerald Pfeifer Nov. 24, 2011, 4:56 p.m. UTC | #2
On Sun, 13 Nov 2011, Joseph S. Myers wrote:
>> Unless there are any objections, I am planning on checking this
>> in.  (The script is generally run as gccadmin with group gcc.)
>> Affirmative notes welcome as well. :-)
> Seems fine to me.

Thanks, Joseph.  I have now applied this to trunk and the gcc-4.6
branch.

Gerald
diff mbox

Patch

Index: update_web_docs_svn
===================================================================
--- update_web_docs_svn	(revision 181325)
+++ update_web_docs_svn	(working copy)
@@ -93,6 +93,7 @@ 
 
 if [ ! -d $DOCSDIR ]; then
   mkdir $DOCSDIR
+  chmod g+w $DOCSDIR
 fi
 
 if [ -z "$RELEASE" ]; then