]>
git.saurik.com Git - apple/icu.git/blob - icuSources/mkinstalldirs
2 # ********************************************************************
4 # * Copyright (c) 2002-2004, International Business Machines Corporation and
5 # * others. All Rights Reserved.
6 # ********************************************************************
7 # mkinstalldirs --- make directory hierarchy
8 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
16 set fnord
`echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
22 pathcomp
="$pathcomp$d"
24 -* ) pathcomp
=.
/$pathcomp ;;
27 if test ! -d "$pathcomp"; then
28 echo "mkdir $pathcomp"
30 mkdir "$pathcomp" || lasterr
=$?
32 if test ! -d "$pathcomp"; then
43 # mkinstalldirs ends here