2 # mkinstalldirs --- make directory hierarchy
3 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
7 # $Id: mkinstalldirs,v 1.8 1997/06/25 17:03:22 meyering Exp $
13 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
19 pathcomp="$pathcomp$d"
21 -* ) pathcomp=./$pathcomp ;;
24 if test ! -d "$pathcomp"; then
25 echo "mkdir $pathcomp" 1>&2
27 mkdir "$pathcomp" || lasterr=$?
29 if test ! -d "$pathcomp"; then
40 # mkinstalldirs ends here