Force directories to be world-readable
This commit is contained in:
parent
f139bc58d0
commit
8a87d4bfe4
@ -222,7 +222,8 @@ static int _variables_dist(Configure * configure, FILE * fp)
|
|||||||
_makefile_output_variable(fp, "DESTDIR",
|
_makefile_output_variable(fp, "DESTDIR",
|
||||||
configure->prefs->destdir);
|
configure->prefs->destdir);
|
||||||
}
|
}
|
||||||
_makefile_output_variable(fp, "MKDIR", "mkdir -p");
|
_makefile_output_variable(fp, "MKDIR",
|
||||||
|
"mkdir -m 0755 -p");
|
||||||
_makefile_output_variable(fp, "INSTALL", "install");
|
_makefile_output_variable(fp, "INSTALL", "install");
|
||||||
_makefile_output_variable(fp, "RM", "rm -f");
|
_makefile_output_variable(fp, "RM", "rm -f");
|
||||||
break;
|
break;
|
||||||
@ -373,7 +374,8 @@ static int _variables_executables(Configure * configure, FILE * fp)
|
|||||||
_makefile_output_variable(fp, "TAR", "tar -czvf");
|
_makefile_output_variable(fp, "TAR", "tar -czvf");
|
||||||
if(targets != NULL || includes != NULL)
|
if(targets != NULL || includes != NULL)
|
||||||
{
|
{
|
||||||
_makefile_output_variable(fp, "MKDIR", "mkdir -p");
|
_makefile_output_variable(fp, "MKDIR",
|
||||||
|
"mkdir -m 0755 -p");
|
||||||
_makefile_output_variable(fp, "INSTALL", "install");
|
_makefile_output_variable(fp, "INSTALL", "install");
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user