| OLD | NEW |
| 1 #! /bin/sh | 1 #! /bin/sh |
| 2 # mkinstalldirs --- make directory hierarchy | 2 # mkinstalldirs --- make directory hierarchy |
| 3 | 3 |
| 4 scriptversion=2005-06-29.22 | 4 scriptversion=2006-05-11.19 |
| 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" |
| 14 errstatus=0 | 17 errstatus=0 |
| 15 dirmode= | 18 dirmode= |
| 16 | 19 |
| 17 usage="\ | 20 usage="\ |
| 18 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... | 21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... |
| 19 | 22 |
| 20 Create each directory DIR (with mode MODE, if specified), including all | 23 Create each directory DIR (with mode MODE, if specified), including all |
| 21 leading file name components. | 24 leading file name components. |
| 22 | 25 |
| 23 Report bugs to <bug-automake@gnu.org>." | 26 Report bugs to <bug-automake@gnu.org>." |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 exit $errstatus | 152 exit $errstatus |
| 150 | 153 |
| 151 # Local Variables: | 154 # Local Variables: |
| 152 # mode: shell-script | 155 # mode: shell-script |
| 153 # sh-indentation: 2 | 156 # sh-indentation: 2 |
| 154 # eval: (add-hook 'write-file-hooks 'time-stamp) | 157 # eval: (add-hook 'write-file-hooks 'time-stamp) |
| 155 # time-stamp-start: "scriptversion=" | 158 # time-stamp-start: "scriptversion=" |
| 156 # time-stamp-format: "%:y-%02m-%02d.%02H" | 159 # time-stamp-format: "%:y-%02m-%02d.%02H" |
| 157 # time-stamp-end: "$" | 160 # time-stamp-end: "$" |
| 158 # End: | 161 # End: |
| OLD | NEW |