OLD | NEW |
1 #! /bin/sh | 1 #! /bin/sh |
2 # mkinstalldirs --- make directory hierarchy | 2 # mkinstalldirs --- make directory hierarchy |
3 | 3 |
4 scriptversion=2006-05-11.19 | 4 scriptversion=2005-06-29.22 |
5 | 5 |
6 # Original author: Noah Friedman <friedman@prep.ai.mit.edu> | 6 # Original author: Noah Friedman <friedman@prep.ai.mit.edu> |
7 # Created: 1993-05-16 | 7 # Created: 1993-05-16 |
8 # Public domain. | 8 # Public domain. |
9 # | 9 # |
10 # This file is maintained in Automake, please report | 10 # This file is maintained in Automake, please report |
11 # bugs to <bug-automake@gnu.org> or send patches to | 11 # bugs to <bug-automake@gnu.org> or send patches to |
12 # <automake-patches@gnu.org>. | 12 # <automake-patches@gnu.org>. |
13 | 13 |
14 nl=' | |
15 ' | |
16 IFS=" "" $nl" | |
17 errstatus=0 | 14 errstatus=0 |
18 dirmode= | 15 dirmode= |
19 | 16 |
20 usage="\ | 17 usage="\ |
21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... | 18 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... |
22 | 19 |
23 Create each directory DIR (with mode MODE, if specified), including all | 20 Create each directory DIR (with mode MODE, if specified), including all |
24 leading file name components. | 21 leading file name components. |
25 | 22 |
26 Report bugs to <bug-automake@gnu.org>." | 23 Report bugs to <bug-automake@gnu.org>." |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 exit $errstatus | 149 exit $errstatus |
153 | 150 |
154 # Local Variables: | 151 # Local Variables: |
155 # mode: shell-script | 152 # mode: shell-script |
156 # sh-indentation: 2 | 153 # sh-indentation: 2 |
157 # eval: (add-hook 'write-file-hooks 'time-stamp) | 154 # eval: (add-hook 'write-file-hooks 'time-stamp) |
158 # time-stamp-start: "scriptversion=" | 155 # time-stamp-start: "scriptversion=" |
159 # time-stamp-format: "%:y-%02m-%02d.%02H" | 156 # time-stamp-format: "%:y-%02m-%02d.%02H" |
160 # time-stamp-end: "$" | 157 # time-stamp-end: "$" |
161 # End: | 158 # End: |
OLD | NEW |