]> git.saurik.com Git - apple/icu.git/blame - icuSources/mkinstalldirs
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / mkinstalldirs
CommitLineData
b75a7d8f
A
1#! /bin/sh
2# ********************************************************************
3# * COPYRIGHT:
4# * Copyright (c) 2002, 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>
9# Created: 1993-05-16
10# Public domain
11
12# $Id: mkinstalldirs,v 1.1.1.1 2003/02/05 21:31:12 avery Exp $
13
14errstatus=0
15
16for file
17do
18 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
19 shift
20
21 pathcomp=
22 for d
23 do
24 pathcomp="$pathcomp$d"
25 case "$pathcomp" in
26 -* ) pathcomp=./$pathcomp ;;
27 esac
28
29 if test ! -d "$pathcomp"; then
30 echo "mkdir $pathcomp"
31
32 mkdir "$pathcomp" || lasterr=$?
33
34 if test ! -d "$pathcomp"; then
35 errstatus=$lasterr
36 fi
37 fi
38
39 pathcomp="$pathcomp/"
40 done
41done
42
43exit $errstatus
44
45# mkinstalldirs ends here