Mercurial > emacs
comparison mkinstalldirs @ 112151:5ba6192ecf75
* install-sh, mkinstalldirs, move-if-change: Update from master
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 07 Jan 2011 12:43:33 -0800 |
parents | 14a97ab281d5 |
children |
comparison
equal
deleted
inserted
replaced
112149:14f0e9f5602e | 112151:5ba6192ecf75 |
---|---|
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=2009-04-28.21; # UTC |
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 # |
148 pathcomp=$pathcomp/ | 148 pathcomp=$pathcomp/ |
149 done | 149 done |
150 done | 150 done |
151 | 151 |
152 exit $errstatus | 152 exit $errstatus |
153 | |
154 # Local Variables: | |
155 # mode: shell-script | |
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" | |
162 # End: |