This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix permissions in update_web_docs_svn


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.

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]