summaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>1996-10-14 00:58:56 +0000
committercvs2svn <admin@example.com>1996-10-14 00:58:56 +0000
commit78d469e4221478f0c79f67fef1d5aa98f2c96f47 (patch)
treefcf35814ba17653b9b8d16e99af99ea5b39bba5e /mkinstalldirs
parent0682f7ab1dfa23adbf85435d5884b0ec91956a53 (diff)
parent0f2d19dd46f83f41177f61d585732b32a866d613 (diff)
downloadguile-pre_vollmer_scm_p.tar.gz
This commit was manufactured by cvs2svn to create tagpre_vollmer_scm_p
'pre_vollmer_scm_p'.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-xmkinstalldirs36
1 files changed, 0 insertions, 36 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index cc8783edc..000000000
--- a/mkinstalldirs
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Last modified: 1994-03-25
-# Public domain
-
-errstatus=0
-
-for file in ${1+"$@"} ; do
- set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- for d in ${1+"$@"} ; do
- pathcomp="$pathcomp$d"
- case "$pathcomp" in
- -* ) pathcomp=./$pathcomp ;;
- esac
-
- if test ! -d "$pathcomp"; then
- echo "mkdir $pathcomp" 1>&2
- mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
- fi
-
- if test ! -d "$pathcomp"; then
- errstatus=$lasterr
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here