Create directories with the proper permissions

This commit is contained in:
Pierre Pronchery 2012-07-10 23:22:43 +00:00
parent f904804626
commit 7e1451014f
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ PREFIX="/usr/local"
. "../config.sh"
DEBUG="_debug"
INSTALL="install -m 0644"
MKDIR="mkdir -p"
MKDIR="mkdir -m 0755 -p"
RM="rm -f"
XSLTPROC="xsltproc --nonet --xinclude"

View File

@ -29,7 +29,7 @@ PREFIX="/usr/local"
. "../config.sh"
DEBUG="_debug"
INSTALL="install -m 0644"
MKDIR="mkdir -p"
MKDIR="mkdir -m 0755 -p"
RM="rm -f"
XSLTPROC="xsltproc --nonet --xinclude"