aboutsummaryrefslogtreecommitdiffstats
path: root/libical/mkinstalldirs
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-05-22 06:40:15 +0800
committernobody <nobody@localhost>2000-05-22 06:40:15 +0800
commit573469db0d4d8a5a328137342c041bd005eaf974 (patch)
tree70ea22d6a4da2e07bedfe85a5cddc5e7ad0a1246 /libical/mkinstalldirs
parent3f5d9cb60827ca2a5e032e95aa241cc8376ab46f (diff)
downloadgsoc2013-evolution-MC_4_5_47.tar
gsoc2013-evolution-MC_4_5_47.tar.gz
gsoc2013-evolution-MC_4_5_47.tar.bz2
gsoc2013-evolution-MC_4_5_47.tar.lz
gsoc2013-evolution-MC_4_5_47.tar.xz
gsoc2013-evolution-MC_4_5_47.tar.zst
gsoc2013-evolution-MC_4_5_47.zip
This commit was manufactured by cvs2svn to create tag 'MC_4_5_47'.MC_4_5_47
svn path=/tags/MC_4_5_47/; revision=3158
Diffstat (limited to 'libical/mkinstalldirs')
-rw-r--r--libical/mkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/libical/mkinstalldirs b/libical/mkinstalldirs
deleted file mode 100644
index e82eeacbb3..0000000000
--- a/libical/mkinstalldirs
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-# $Id: mkinstalldirs,v 1.3 2000/05/15 06:18:13 ericb Exp $
-
-errstatus=0
-
-for file
-do
- set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- for d
- do
- pathcomp="$pathcomp$d"
- case "$pathcomp" in
- -* ) pathcomp=./$pathcomp ;;
- esac
-
- if test ! -d "$pathcomp"; then
- echo "mkdir $pathcomp" 1>&2
-
- mkdir "$pathcomp" || lasterr=$?
-
- if test ! -d "$pathcomp"; then
- errstatus=$lasterr
- fi
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here \ No newline at end of file