Commit 3e50aaf2 authored by Paul Bryan Roberts's avatar Paul Bryan Roberts Committed by Alexandre Julliard

makedep: Let umask decide mode for makefiles.

parent b6fcb204
......@@ -878,7 +878,7 @@ static FILE *create_temp_file( char **tmp_name )
for (i = 0; i < 100; i++)
{
sprintf( name, "%s.tmp%08x", OutputFileName, id );
if ((fd = open( name, O_RDWR | O_CREAT | O_EXCL, 0600 )) != -1)
if ((fd = open( name, O_RDWR | O_CREAT | O_EXCL, 0666 )) != -1)
{
ret = fdopen( fd, "w" );
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment