Convert mkinstalldirs added script to quilt patch
[manu/suphp.git] / debian / patches / 03_mkinstalldirs.diff
diff --git a/debian/patches/03_mkinstalldirs.diff b/debian/patches/03_mkinstalldirs.diff
new file mode 100644 (file)
index 0000000..0d5b71b
--- /dev/null
@@ -0,0 +1,45 @@
+Index: suphp/config/mkinstalldirs
+===================================================================
+--- /dev/null  1970-01-01 00:00:00.000000000 +0000
++++ suphp/config/mkinstalldirs 2012-04-18 12:34:31.229383687 +0200
+@@ -0,0 +1,40 @@
++#! /bin/sh
++# mkinstalldirs --- make directory hierarchy
++# Author: Noah Friedman <friedman@prep.ai.mit.edu>
++# Created: 1993-05-16
++# Public domain
++
++# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje 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