2 # mkinstalldirs --- make directory hierarchy
3 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
17 pathcomp="$pathcomp$d"
19 -* ) pathcomp=./$pathcomp ;;
22 if test ! -d "$pathcomp"; then
23 echo "mkdir $pathcomp" 1>&2
25 mkdir "$pathcomp" || lasterr=$?
27 if test ! -d "$pathcomp"; then
38 # mkinstalldirs ends here