diff options
author | Eric Busboom <ericb@src.gnome.org> | 2000-05-15 12:36:44 +0800 |
---|---|---|
committer | Eric Busboom <ericb@src.gnome.org> | 2000-05-15 12:36:44 +0800 |
commit | f8ff932ae3149c285acea3977a50596749d38584 (patch) | |
tree | 35b1dae583e169dda8f2ee7a31cf08dfc9658417 /libical/mkinstalldirs | |
parent | 8c965a2961ea6ae188a351be2671cfe63ac0a9ed (diff) | |
download | gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.gz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.bz2 gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.lz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.xz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.zst gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.zip |
removing all files
svn path=/trunk/; revision=3040
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 09c7184cfa..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.1 2000/04/18 18:17:02 alves 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 |