repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge old change from 2.2 branch to give legend in heading
[Samba.git]
/
source3
/
script
/
installdirs.sh
blob
1db46b82ff2f5cf194f3758c9bd91e5a0cf22f56
1
#!/bin/sh
2
3
while
(
test -n
"
$1
"
);
do
4
5
DIRNAME
=
`echo
$1
| sed 's/\/\//\//g'`
6
if
[ !
-d
$DIRNAME
];
then
7
mkdir
-p
$DIRNAME
8
fi
9
10
if
[ !
-d
$DIRNAME
];
then
11
echo
Failed to
make
directory
$1
12
exit
1
13
fi
14
15
shift
;
16
done
17
18
19