~ubuntu-branches/ubuntu/saucy/blam/saucy

« back to all changes in this revision

Viewing changes to mkinstalldirs

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Martín Nieto
  • Date: 2011-07-31 16:45:15 UTC
  • mto: (1.1.9) (2.2.6 sid)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20110731164515-mnyfhc96u6f8vo98
Import upstream version 1.8.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# mkinstalldirs --- make directory hierarchy
3
 
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
 
3
 
 
4
scriptversion=2009-04-28.21; # UTC
 
5
 
 
6
# Original author: Noah Friedman <friedman@prep.ai.mit.edu>
4
7
# Created: 1993-05-16
5
 
# Public domain
 
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>.
6
13
 
 
14
nl='
 
15
'
 
16
IFS=" ""        $nl"
7
17
errstatus=0
8
 
dirmode=""
 
18
dirmode=
9
19
 
10
20
usage="\
11
 
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
 
21
Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
 
22
 
 
23
Create each directory DIR (with mode MODE, if specified), including all
 
24
leading file name components.
 
25
 
 
26
Report bugs to <bug-automake@gnu.org>."
12
27
 
13
28
# process command line arguments
14
29
while test $# -gt 0 ; do
15
30
  case $1 in
16
31
    -h | --help | --h*)         # -h for help
17
 
      echo "$usage" 1>&2
18
 
      exit 0
 
32
      echo "$usage"
 
33
      exit $?
19
34
      ;;
20
35
    -m)                         # -m PERM arg
21
36
      shift
23
38
      dirmode=$1
24
39
      shift
25
40
      ;;
 
41
    --version)
 
42
      echo "$0 $scriptversion"
 
43
      exit $?
 
44
      ;;
26
45
    --)                         # stop option processing
27
46
      shift
28
47
      break
50
69
  0) exit 0 ;;
51
70
esac
52
71
 
 
72
# 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.
53
78
case $dirmode in
54
79
  '')
55
 
    if mkdir -p -- . 2>/dev/null; then
 
80
    if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
56
81
      echo "mkdir -p -- $*"
57
82
      exec mkdir -p -- "$@"
 
83
    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
 
89
      test -d ./--version && rmdir ./--version
58
90
    fi
59
91
    ;;
60
92
  *)
61
 
    if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
 
93
    if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
 
94
       test ! -d ./--version; then
62
95
      echo "mkdir -m $dirmode -p -- $*"
63
96
      exec mkdir -m "$dirmode" -p -- "$@"
 
97
    else
 
98
      # Clean up after NextStep and OpenStep mkdir.
 
99
      for d in ./-m ./-p ./--version "./$dirmode";
 
100
      do
 
101
        test -d $d && rmdir $d
 
102
      done
64
103
    fi
65
104
    ;;
66
105
esac
67
106
 
68
107
for file
69
108
do
70
 
  set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
 
109
  case $file in
 
110
    /*) pathcomp=/ ;;
 
111
    *)  pathcomp= ;;
 
112
  esac
 
113
  oIFS=$IFS
 
114
  IFS=/
 
115
  set fnord $file
71
116
  shift
 
117
  IFS=$oIFS
72
118
 
73
 
  pathcomp=
74
119
  for d
75
120
  do
76
 
    pathcomp="$pathcomp$d"
 
121
    test "x$d" = x && continue
 
122
 
 
123
    pathcomp=$pathcomp$d
77
124
    case $pathcomp in
78
125
      -*) pathcomp=./$pathcomp ;;
79
126
    esac
84
131
      mkdir "$pathcomp" || lasterr=$?
85
132
 
86
133
      if test ! -d "$pathcomp"; then
87
 
        errstatus=$lasterr
 
134
        errstatus=$lasterr
88
135
      else
89
 
        if test ! -z "$dirmode"; then
 
136
        if test ! -z "$dirmode"; then
90
137
          echo "chmod $dirmode $pathcomp"
91
 
          lasterr=""
92
 
          chmod "$dirmode" "$pathcomp" || lasterr=$?
 
138
          lasterr=
 
139
          chmod "$dirmode" "$pathcomp" || lasterr=$?
93
140
 
94
 
          if test ! -z "$lasterr"; then
95
 
            errstatus=$lasterr
96
 
          fi
97
 
        fi
 
141
          if test ! -z "$lasterr"; then
 
142
            errstatus=$lasterr
 
143
          fi
 
144
        fi
98
145
      fi
99
146
    fi
100
147
 
101
 
    pathcomp="$pathcomp/"
 
148
    pathcomp=$pathcomp/
102
149
  done
103
150
done
104
151
 
107
154
# Local Variables:
108
155
# mode: shell-script
109
156
# sh-indentation: 2
 
157
# eval: (add-hook 'write-file-hooks 'time-stamp)
 
158
# time-stamp-start: "scriptversion="
 
159
# time-stamp-format: "%:y-%02m-%02d.%02H"
 
160
# time-stamp-time-zone: "UTC"
 
161
# time-stamp-end: "; # UTC"
110
162
# End:
111
 
# mkinstalldirs ends here