summaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-02-02 13:09:26 +0000
committerGerd Moellmann <gerd@gnu.org>2001-02-02 13:09:26 +0000
commit0ee8c0bb3d97cff27c36f3fdf8659c631769e31b (patch)
tree684a32cca8f9ac4ca42894d33b8eeb66bba2e522 /mkinstalldirs
parent450832afbceb1be1590020c4df6a02ec61069170 (diff)
downloademacs-0ee8c0bb3d97cff27c36f3fdf8659c631769e31b.tar.gz
(errstatus): Chmod a+rx directories we create.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-xmkinstalldirs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
index 319086a3a46..ef5a91716a6 100755
--- a/mkinstalldirs
+++ b/mkinstalldirs
@@ -4,7 +4,7 @@
# Created: 1993-05-16
# Public domain
-# $Id: mkinstalldirs,v 1.11 1998/05/19 07:05:25 drepper dead $
+# $Id: mkinstalldirs,v 1.1 2001/02/02 13:04:53 gerd Exp $
errstatus=0
@@ -24,7 +24,7 @@ do
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp" 1>&2
- mkdir "$pathcomp" || lasterr=$?
+ (mkdir "$pathcomp" && chmod a+rx "$pathcomp") || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr