Mon Dec 18 13:40:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
[glibc.git] / mkinstalldirs
blobcd1fe0a7947c8ef25c705fb074e19baf1e4558f6
1 #! /bin/sh
2 # mkinstalldirs --- make directory hierarchy
3 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
4 # Created: 1993-05-16
5 # Public domain
7 errstatus=0
9 for file
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
12 shift
14 pathcomp=
15 for d in ${1+"$@"} ; do
16 pathcomp="$pathcomp$d"
17 case "$pathcomp" in
18 -* ) pathcomp=./$pathcomp ;;
19 esac
21 if test ! -d "$pathcomp"; then
22 echo "mkdir $pathcomp" 1>&2
23 mkdir "$pathcomp" || errstatus=$?
26 pathcomp="$pathcomp/"
27 done
28 done
30 exit $errstatus
32 # mkinstalldirs ends here