Convert mkinstalldirs added script to quilt patch
authorEmmanuel Lacour <elacour@home-dn.net>
Wed, 18 Apr 2012 10:36:03 +0000 (12:36 +0200)
committerEmmanuel Lacour <elacour@home-dn.net>
Wed, 18 Apr 2012 10:36:03 +0000 (12:36 +0200)
debian/patches/03_mkinstalldirs.diff [new file with mode: 0644]
debian/patches/series

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
index 4d9d220..d9ff04c 100644 (file)
@@ -1,2 +1,3 @@
+03_mkinstalldirs.diff
 01_debian.diff
 02_libtool.diff