summaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2000-09-15 20:53:59 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2000-09-15 20:53:59 +0000
commitee06d51e1a15e63bfc6489940e9567cf86bbb1c5 (patch)
tree3817ec8a2066182a288b909c7fe6b20061df99a7 /mkinstalldirs
parent573266fe44ae5aa23cc511d722bce93f116d0f12 (diff)
downloadtinyproxy-ee06d51e1a15e63bfc6489940e9567cf86bbb1c5.tar.gz
tinyproxy-ee06d51e1a15e63bfc6489940e9567cf86bbb1c5.zip
Don't included automatically generated files.
Diffstat (limited to '')
-rwxr-xr-xmkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index e9981d1..0000000
--- a/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.1.1 2000-02-16 17:32:17 sdyoung 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"
-
- mkdir "$pathcomp" || lasterr=$?
-
- if test ! -d "$pathcomp"; then
- errstatus=$lasterr
- fi
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here