aboutsummaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2015-06-28 17:11:52 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2015-09-10 16:12:01 -0400
commitc8a1cb2ce7d33e28e88658008bcfcadd011b3829 (patch)
tree061f8bfdf03be21944e51436354cdd3636592519 /mkinstalldirs
parent9d54739a874030125eb3b87bacaf558fa9bbc9e1 (diff)
downloadPROJ-c8a1cb2ce7d33e28e88658008bcfcadd011b3829.tar.gz
PROJ-c8a1cb2ce7d33e28e88658008bcfcadd011b3829.zip
BLD: Remove generated files.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-xmkinstalldirs38
1 files changed, 0 insertions, 38 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index 5e17cd39..00000000
--- a/mkinstalldirs
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-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