diff options
author | Brad King <brad.king@kitware.com> | 2010-01-12 16:57:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-01-12 16:57:01 (GMT) |
commit | 8d0161c8ffbe656ec1634da62319a869df01d85d (patch) | |
tree | 908531c739b50da4165b4f02594be4dd1c8db38d /Source/cmWriteFileCommand.cxx | |
parent | 6c1e24276f97112c914065dff772246b0d73ec06 (diff) | |
download | CMake-8d0161c8ffbe656ec1634da62319a869df01d85d.zip CMake-8d0161c8ffbe656ec1634da62319a869df01d85d.tar.gz CMake-8d0161c8ffbe656ec1634da62319a869df01d85d.tar.bz2 |
Trust umask for file permissions
Open output files with mode 0666 so that permissions are not more strict
than umask permits. See issue #10126.
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r-- | Source/cmWriteFileCommand.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx index 5c5ad2e..f46b87f 100644 --- a/Source/cmWriteFileCommand.cxx +++ b/Source/cmWriteFileCommand.cxx @@ -60,9 +60,7 @@ bool cmWriteFileCommand #elif defined( __BORLANDC__ ) S_IRUSR | S_IWUSR #else - S_IRUSR | S_IWUSR | - S_IRGRP | - S_IROTH + 0666 #endif ; @@ -73,7 +71,7 @@ bool cmWriteFileCommand #if defined( _MSC_VER ) || defined( __MINGW32__ ) S_IREAD | S_IWRITE #else - S_IRUSR | S_IWUSR + 0666 #endif ); } |