summaryrefslogtreecommitdiff
path: root/ext/bcmath/libbcmath/mkinstalldirs
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-11-22 20:20:02 +0000
committerZeev Suraski <zeev@php.net>2000-11-22 20:20:02 +0000
commitc476bce2f1493f46b7bdd1932255a43ae2c7fe44 (patch)
tree551268ab8c74fe5042ca6a7dfe85458786bf1431 /ext/bcmath/libbcmath/mkinstalldirs
parentbe6ab204158c836b10e1f586059462807288e2e3 (diff)
downloadphp-git-c476bce2f1493f46b7bdd1932255a43ae2c7fe44.tar.gz
At long last, import the bcmath library, by Phil Nelson
Diffstat (limited to 'ext/bcmath/libbcmath/mkinstalldirs')
-rw-r--r--ext/bcmath/libbcmath/mkinstalldirs36
1 files changed, 36 insertions, 0 deletions
diff --git a/ext/bcmath/libbcmath/mkinstalldirs b/ext/bcmath/libbcmath/mkinstalldirs
new file mode 100644
index 0000000000..cc8783edce
--- /dev/null
+++ b/ext/bcmath/libbcmath/mkinstalldirs
@@ -0,0 +1,36 @@
+#! /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