diff options
author | nobody <nobody@localhost> | 2000-05-16 11:43:44 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-05-16 11:43:44 +0800 |
commit | 5e79f1e14725be2e212be1b05150e918a2a55efb (patch) | |
tree | 70ea22d6a4da2e07bedfe85a5cddc5e7ad0a1246 /libical/mkinstalldirs | |
parent | 40b6141cfe1649f685e49ebd81cfd4baf0baeedf (diff) | |
download | gsoc2013-evolution-cvs_old.tar gsoc2013-evolution-cvs_old.tar.gz gsoc2013-evolution-cvs_old.tar.bz2 gsoc2013-evolution-cvs_old.tar.lz gsoc2013-evolution-cvs_old.tar.xz gsoc2013-evolution-cvs_old.tar.zst gsoc2013-evolution-cvs_old.zip |
This commit was manufactured by cvs2svn to create tag 'cvs_old'.cvs_old
svn path=/tags/cvs_old/; revision=3063
Diffstat (limited to 'libical/mkinstalldirs')
-rw-r--r-- | libical/mkinstalldirs | 40 |
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 |