2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Fix mode for mkdir.

[SVN r79852]
This commit is contained in:
Steven Watanabe
2012-08-02 15:19:18 +00:00
parent b24ca860f1
commit 5b1cbbd531

View File

@@ -168,7 +168,7 @@ void file_dirscan_( file_info_t * const d, scanback func, void * closure )
int file_mkdir( char const * const path )
{
return mkdir( path, 0766 );
return mkdir( path, 0777 );
}