Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79852 - trunk/tools/build/v2/engine
From: steven_at_[hidden]
Date: 2012-08-02 11:19:19


Author: steven_watanabe
Date: 2012-08-02 11:19:18 EDT (Thu, 02 Aug 2012)
New Revision: 79852
URL: http://svn.boost.org/trac/boost/changeset/79852

Log:
Fix mode for mkdir.
Text files modified:
   trunk/tools/build/v2/engine/fileunix.c | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/tools/build/v2/engine/fileunix.c
==============================================================================
--- trunk/tools/build/v2/engine/fileunix.c (original)
+++ trunk/tools/build/v2/engine/fileunix.c 2012-08-02 11:19:18 EDT (Thu, 02 Aug 2012)
@@ -168,7 +168,7 @@
 
 int file_mkdir( char const * const path )
 {
- return mkdir( path, 0766 );
+ return mkdir( path, 0777 );
 }
 
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk