Enforce permissions properly when creating directories
This commit is contained in:
parent
88ff69004a
commit
1edd87e19d
|
@ -1,7 +1,6 @@
|
|||
#!/bin/sh
|
||||
#$Id$
|
||||
#Copyright (c) 2011 Pierre Pronchery <khorben@defora.org>
|
||||
#All rights reserved.
|
||||
#Copyright (c) 2011-2012 Pierre Pronchery <khorben@defora.org>
|
||||
#
|
||||
#Redistribution and use in source and binary forms, with or without
|
||||
#modification, are permitted provided that the following conditions are met:
|
||||
|
@ -31,7 +30,7 @@ PREFIX="/usr/local"
|
|||
DEBUG="_debug"
|
||||
DEVNULL="/dev/null"
|
||||
INSTALL="install -m 0644"
|
||||
MKDIR="mkdir -p"
|
||||
MKDIR="mkdir -m 0755 -p"
|
||||
RM="rm -f"
|
||||
SED="sed"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user