Fixup readline and sim including of override.m4
[deliverable/binutils-gdb.git] / mkinstalldirs
CommitLineData
252b5132
RH
1#! /bin/sh
2# mkinstalldirs --- make directory hierarchy
55636792 3
1d9c9cd7 4scriptversion=2005-06-29.22
55636792
NN
5
6# Original author: Noah Friedman <friedman@prep.ai.mit.edu>
252b5132 7# Created: 1993-05-16
55636792
NN
8# 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>.
252b5132
RH
13
14errstatus=0
1d9c9cd7 15dirmode=
252b5132 16
c07f46a4 17usage="\
55636792
NN
18Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
19
20Create each directory DIR (with mode MODE, if specified), including all
21leading file name components.
22
23Report bugs to <bug-automake@gnu.org>."
252b5132 24
c07f46a4
NN
25# process command line arguments
26while test $# -gt 0 ; do
27 case $1 in
28 -h | --help | --h*) # -h for help
55636792 29 echo "$usage"
1d9c9cd7 30 exit $?
c07f46a4
NN
31 ;;
32 -m) # -m PERM arg
33 shift
34 test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
35 dirmode=$1
36 shift
37 ;;
55636792
NN
38 --version)
39 echo "$0 $scriptversion"
1d9c9cd7 40 exit $?
55636792 41 ;;
c07f46a4
NN
42 --) # stop option processing
43 shift
44 break
45 ;;
46 -*) # unknown option
47 echo "$usage" 1>&2
48 exit 1
49 ;;
50 *) # first non-opt arg
51 break
52 ;;
53 esac
54done
55
56for file
57do
58 if test -d "$file"; then
59 shift
60 else
61 break
62 fi
63done
64
65case $# in
66 0) exit 0 ;;
67esac
68
55636792
NN
69# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
70# mkdir -p a/c at the same time, both will detect that a is missing,
71# one will create a, then the other will try to create a and die with
72# a "File exists" error. This is a problem when calling mkinstalldirs
73# from a parallel make. We use --version in the probe to restrict
74# ourselves to GNU mkdir, which is thread-safe.
c07f46a4
NN
75case $dirmode in
76 '')
55636792 77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
c07f46a4
NN
78 echo "mkdir -p -- $*"
79 exec mkdir -p -- "$@"
55636792
NN
80 else
81 # On NextStep and OpenStep, the `mkdir' command does not
82 # recognize any option. It will interpret all options as
83 # directories to create, and then abort because `.' already
84 # exists.
85 test -d ./-p && rmdir ./-p
86 test -d ./--version && rmdir ./--version
c07f46a4
NN
87 fi
88 ;;
89 *)
55636792
NN
90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
91 test ! -d ./--version; then
c07f46a4
NN
92 echo "mkdir -m $dirmode -p -- $*"
93 exec mkdir -m "$dirmode" -p -- "$@"
55636792
NN
94 else
95 # Clean up after NextStep and OpenStep mkdir.
96 for d in ./-m ./-p ./--version "./$dirmode";
97 do
98 test -d $d && rmdir $d
99 done
c07f46a4
NN
100 fi
101 ;;
102esac
103
104for file
105do
1d9c9cd7
KC
106 case $file in
107 /*) pathcomp=/ ;;
108 *) pathcomp= ;;
109 esac
110 oIFS=$IFS
111 IFS=/
112 set fnord $file
c07f46a4 113 shift
1d9c9cd7 114 IFS=$oIFS
c07f46a4 115
c07f46a4
NN
116 for d
117 do
1d9c9cd7
KC
118 test "x$d" = x && continue
119
120 pathcomp=$pathcomp$d
c07f46a4
NN
121 case $pathcomp in
122 -*) pathcomp=./$pathcomp ;;
123 esac
124
125 if test ! -d "$pathcomp"; then
126 echo "mkdir $pathcomp"
127
128 mkdir "$pathcomp" || lasterr=$?
252b5132 129
c07f46a4 130 if test ! -d "$pathcomp"; then
55636792 131 errstatus=$lasterr
c07f46a4 132 else
55636792 133 if test ! -z "$dirmode"; then
c07f46a4 134 echo "chmod $dirmode $pathcomp"
1d9c9cd7 135 lasterr=
55636792 136 chmod "$dirmode" "$pathcomp" || lasterr=$?
252b5132 137
55636792
NN
138 if test ! -z "$lasterr"; then
139 errstatus=$lasterr
140 fi
141 fi
c07f46a4
NN
142 fi
143 fi
252b5132 144
1d9c9cd7 145 pathcomp=$pathcomp/
c07f46a4 146 done
252b5132
RH
147done
148
149exit $errstatus
150
c07f46a4
NN
151# Local Variables:
152# mode: shell-script
153# sh-indentation: 2
55636792
NN
154# eval: (add-hook 'write-file-hooks 'time-stamp)
155# time-stamp-start: "scriptversion="
156# time-stamp-format: "%:y-%02m-%02d.%02H"
157# time-stamp-end: "$"
c07f46a4 158# End:
This page took 0.415229 seconds and 4 git commands to generate.