2 # mkinstalldirs --- make directory hierarchy
3 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
5 # Last modified: 1994-03-25
10 for file in ${1+"$@"} ; do
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
15 for d in ${1+"$@"} ; do
16 pathcomp="$pathcomp$d"
18 -* ) pathcomp=./$pathcomp ;;
21 if test ! -d "$pathcomp"; then
22 echo "mkdir $pathcomp" 1>&2
23 mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
26 if test ! -d "$pathcomp"; then
36 # mkinstalldirs ends here