diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-03-24 10:34:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-03-24 10:34:30 +0100 |
commit | 4259d2df7dd95637a4b1e3fb174fe5e5aef81069 (patch) | |
tree | 8abd5ab61fbacf160f9084a44613fcc4b20e8483 /ares/mkinstalldirs | |
parent | 4b351d018e3d6691191fd653a17f14f4a31e0b4c (diff) |
remove the ares subtree
c-ares is now hosted entirely separate from the curl project
see http://c-ares.haxx.se/ for all details concerning c-ares,
its source repository and more.
Diffstat (limited to 'ares/mkinstalldirs')
-rwxr-xr-x | ares/mkinstalldirs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/ares/mkinstalldirs b/ares/mkinstalldirs deleted file mode 100755 index d0fd194fd..000000000 --- a/ares/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$ - -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 |