blob: ef7e16fdafe243ab5e368763bd4cda18c5872c1f [file] [log] [blame]
Dieter Baron9aebb4c2003-10-01 08:08:23 +00001#! /bin/sh
2# mkinstalldirs --- make directory hierarchy
Thomas Klausner38053cd2003-12-27 22:06:47 +00003
Thomas Klausner879dfce2006-12-16 10:16:16 +00004scriptversion=2006-05-11.19
Thomas Klausner38053cd2003-12-27 22:06:47 +00005
6# Original author: Noah Friedman <friedman@prep.ai.mit.edu>
Dieter Baron9aebb4c2003-10-01 08:08:23 +00007# Created: 1993-05-16
Thomas Klausner38053cd2003-12-27 22:06:47 +00008# Public domain.
9#
10# This file is maintained in Automake, please report
11# bugs to <bug-automake@gnu.org> or send patches to
12# <automake-patches@gnu.org>.
Dieter Baron9aebb4c2003-10-01 08:08:23 +000013
Thomas Klausner879dfce2006-12-16 10:16:16 +000014nl='
15'
16IFS=" "" $nl"
Dieter Baron9aebb4c2003-10-01 08:08:23 +000017errstatus=0
Thomas Klausner117b31b2005-07-14 16:56:01 +000018dirmode=
Dieter Baron9aebb4c2003-10-01 08:08:23 +000019
20usage="\
Thomas Klausner38053cd2003-12-27 22:06:47 +000021Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
22
23Create each directory DIR (with mode MODE, if specified), including all
24leading file name components.
25
26Report bugs to <bug-automake@gnu.org>."
Dieter Baron9aebb4c2003-10-01 08:08:23 +000027
28# process command line arguments
29while test $# -gt 0 ; do
30 case $1 in
31 -h | --help | --h*) # -h for help
Thomas Klausner38053cd2003-12-27 22:06:47 +000032 echo "$usage"
Thomas Klausner9883c0b2005-06-09 19:48:03 +000033 exit $?
Dieter Baron9aebb4c2003-10-01 08:08:23 +000034 ;;
35 -m) # -m PERM arg
36 shift
37 test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
38 dirmode=$1
39 shift
40 ;;
Thomas Klausner38053cd2003-12-27 22:06:47 +000041 --version)
42 echo "$0 $scriptversion"
Thomas Klausner9883c0b2005-06-09 19:48:03 +000043 exit $?
Thomas Klausner38053cd2003-12-27 22:06:47 +000044 ;;
Dieter Baron9aebb4c2003-10-01 08:08:23 +000045 --) # stop option processing
46 shift
47 break
48 ;;
49 -*) # unknown option
50 echo "$usage" 1>&2
51 exit 1
52 ;;
53 *) # first non-opt arg
54 break
55 ;;
56 esac
57done
58
59for file
60do
61 if test -d "$file"; then
62 shift
63 else
64 break
65 fi
66done
67
68case $# in
69 0) exit 0 ;;
70esac
71
Thomas Klausner24a78982005-01-11 18:38:46 +000072# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
73# mkdir -p a/c at the same time, both will detect that a is missing,
74# one will create a, then the other will try to create a and die with
75# a "File exists" error. This is a problem when calling mkinstalldirs
76# from a parallel make. We use --version in the probe to restrict
77# ourselves to GNU mkdir, which is thread-safe.
Dieter Baron9aebb4c2003-10-01 08:08:23 +000078case $dirmode in
79 '')
Thomas Klausner24a78982005-01-11 18:38:46 +000080 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
Dieter Baron9aebb4c2003-10-01 08:08:23 +000081 echo "mkdir -p -- $*"
82 exec mkdir -p -- "$@"
Thomas Klausner38053cd2003-12-27 22:06:47 +000083 else
84 # On NextStep and OpenStep, the `mkdir' command does not
85 # recognize any option. It will interpret all options as
86 # directories to create, and then abort because `.' already
87 # exists.
88 test -d ./-p && rmdir ./-p
Thomas Klausner24a78982005-01-11 18:38:46 +000089 test -d ./--version && rmdir ./--version
Dieter Baron9aebb4c2003-10-01 08:08:23 +000090 fi
91 ;;
92 *)
Thomas Klausner24a78982005-01-11 18:38:46 +000093 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
94 test ! -d ./--version; then
Dieter Baron9aebb4c2003-10-01 08:08:23 +000095 echo "mkdir -m $dirmode -p -- $*"
96 exec mkdir -m "$dirmode" -p -- "$@"
Thomas Klausner38053cd2003-12-27 22:06:47 +000097 else
98 # Clean up after NextStep and OpenStep mkdir.
Thomas Klausner24a78982005-01-11 18:38:46 +000099 for d in ./-m ./-p ./--version "./$dirmode";
Thomas Klausner38053cd2003-12-27 22:06:47 +0000100 do
101 test -d $d && rmdir $d
102 done
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000103 fi
104 ;;
105esac
106
107for file
108do
Thomas Klausner117b31b2005-07-14 16:56:01 +0000109 case $file in
110 /*) pathcomp=/ ;;
111 *) pathcomp= ;;
112 esac
113 oIFS=$IFS
114 IFS=/
115 set fnord $file
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000116 shift
Thomas Klausner117b31b2005-07-14 16:56:01 +0000117 IFS=$oIFS
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000118
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000119 for d
120 do
Thomas Klausner117b31b2005-07-14 16:56:01 +0000121 test "x$d" = x && continue
122
123 pathcomp=$pathcomp$d
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000124 case $pathcomp in
125 -*) pathcomp=./$pathcomp ;;
126 esac
127
128 if test ! -d "$pathcomp"; then
129 echo "mkdir $pathcomp"
130
131 mkdir "$pathcomp" || lasterr=$?
132
133 if test ! -d "$pathcomp"; then
Thomas Klausner38053cd2003-12-27 22:06:47 +0000134 errstatus=$lasterr
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000135 else
Thomas Klausner38053cd2003-12-27 22:06:47 +0000136 if test ! -z "$dirmode"; then
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000137 echo "chmod $dirmode $pathcomp"
Thomas Klausner117b31b2005-07-14 16:56:01 +0000138 lasterr=
Thomas Klausner38053cd2003-12-27 22:06:47 +0000139 chmod "$dirmode" "$pathcomp" || lasterr=$?
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000140
Thomas Klausner38053cd2003-12-27 22:06:47 +0000141 if test ! -z "$lasterr"; then
142 errstatus=$lasterr
143 fi
144 fi
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000145 fi
146 fi
147
Thomas Klausner117b31b2005-07-14 16:56:01 +0000148 pathcomp=$pathcomp/
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000149 done
150done
151
152exit $errstatus
153
154# Local Variables:
155# mode: shell-script
156# sh-indentation: 2
Thomas Klausner38053cd2003-12-27 22:06:47 +0000157# eval: (add-hook 'write-file-hooks 'time-stamp)
158# time-stamp-start: "scriptversion="
159# time-stamp-format: "%:y-%02m-%02d.%02H"
160# time-stamp-end: "$"
Dieter Baron9aebb4c2003-10-01 08:08:23 +0000161# End: