summaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-09 18:17:20 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:44 +0200
commit6fbdfdcc6d3beda1073ad480f3b8322d93f9e1b3 (patch)
treee5326288320f2c277d976157a484661616cf774e /mkinstalldirs
parente98d15d4eb88ec13a6e6ef97e915aada231855fa (diff)
downloadpucket-6fbdfdcc6d3beda1073ad480f3b8322d93f9e1b3.tar.gz
pucket-6fbdfdcc6d3beda1073ad480f3b8322d93f9e1b3.tar.bz2
pucket-6fbdfdcc6d3beda1073ad480f3b8322d93f9e1b3.zip
Remove autoconf stuff from git
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-xmkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index 318cc98..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 2004-10-26 19:54:13 spotspot 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