1 diff -Nur libvisual-plugins-0.4.0/po/Makefile.in.in libvisual-plugins-0.4.0.new/po/Makefile.in.in
2 --- libvisual-plugins-0.4.0/po/Makefile.in.in 2006-03-21 05:48:28.000000000 +1100
3 +++ libvisual-plugins-0.4.0.new/po/Makefile.in.in 2007-07-09 21:50:13.000000000 +1000
7 INSTALL_DATA = @INSTALL_DATA@
8 -MKINSTALLDIRS = @MKINSTALLDIRS@
9 +MKINSTALLDIRS = mkinstalldirs
10 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
13 diff -Nur libvisual-plugins-0.4.0/po/mkinstalldirs libvisual-plugins-0.4.0.new/po/mkinstalldirs
14 --- libvisual-plugins-0.4.0/po/mkinstalldirs 1970-01-01 10:00:00.000000000 +1000
15 +++ libvisual-plugins-0.4.0.new/po/mkinstalldirs 2006-03-21 05:48:42.000000000 +1100
18 +# mkinstalldirs --- make directory hierarchy
19 +# Author: Noah Friedman <friedman@prep.ai.mit.edu>
20 +# Created: 1993-05-16
27 +Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
29 +# process command line arguments
30 +while test $# -gt 0 ; do
32 + -h | --help | --h*) # -h for help
38 + test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
42 + --) # stop option processing
46 + -*) # unknown option
50 + *) # first non-opt arg
58 + if test -d "$file"; then
71 + if mkdir -p -- . 2>/dev/null; then
72 + echo "mkdir -p -- $*"
73 + exec mkdir -p -- "$@"
77 + if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
78 + echo "mkdir -m $dirmode -p -- $*"
79 + exec mkdir -m "$dirmode" -p -- "$@"
86 + set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
92 + pathcomp="$pathcomp$d"
94 + -*) pathcomp=./$pathcomp ;;
97 + if test ! -d "$pathcomp"; then
98 + echo "mkdir $pathcomp"
100 + mkdir "$pathcomp" || lasterr=$?
102 + if test ! -d "$pathcomp"; then
105 + if test ! -z "$dirmode"; then
106 + echo "chmod $dirmode $pathcomp"
108 + chmod "$dirmode" "$pathcomp" || lasterr=$?
110 + if test ! -z "$lasterr"; then
117 + pathcomp="$pathcomp/"
124 +# mode: shell-script
127 +# mkinstalldirs ends here