annotate build-aux/mkinstalldirs @ 16088:b29b10fbb744 stable release-3-6-4

Version 3.6.4 released. * configure.ac (AC_INIT): Version is now 3.6.4. (OCTAVE_RELEASE_DATE): Now 2013-02-21.
author John W. Eaton <jwe@octave.org>
date Thu, 21 Feb 2013 15:17:54 -0500
parents b67c2d580a25
children 51d4b1018efb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
1 #! /bin/sh
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
2 # mkinstalldirs --- make directory hierarchy
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
3
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
4 scriptversion=2009-04-28.21; # UTC
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
5
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
6 # Original author: Noah Friedman <friedman@prep.ai.mit.edu>
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
7 # Created: 1993-05-16
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
8 # Public domain.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
9 #
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
10 # This file is maintained in Automake, please report
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
11 # bugs to <bug-automake@gnu.org> or send patches to
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
12 # <automake-patches@gnu.org>.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
13
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
14 nl='
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
15 '
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
16 IFS=" "" $nl"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
17 errstatus=0
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
18 dirmode=
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
19
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
20 usage="\
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
22
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
23 Create each directory DIR (with mode MODE, if specified), including all
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
24 leading file name components.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
25
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
26 Report bugs to <bug-automake@gnu.org>."
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
27
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
28 # process command line arguments
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
29 while test $# -gt 0 ; do
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
30 case $1 in
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
31 -h | --help | --h*) # -h for help
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
32 echo "$usage"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
33 exit $?
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
34 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
35 -m) # -m PERM arg
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
36 shift
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
37 test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
38 dirmode=$1
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
39 shift
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
40 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
41 --version)
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
42 echo "$0 $scriptversion"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
43 exit $?
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
44 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
45 --) # stop option processing
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
46 shift
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
47 break
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
48 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
49 -*) # unknown option
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
50 echo "$usage" 1>&2
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
51 exit 1
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
52 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
53 *) # first non-opt arg
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
54 break
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
55 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
56 esac
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
57 done
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
58
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
59 for file
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
60 do
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
61 if test -d "$file"; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
62 shift
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
63 else
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
64 break
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
65 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
66 done
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
67
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
68 case $# in
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
69 0) exit 0 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
70 esac
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
71
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
72 # Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
73 # mkdir -p a/c at the same time, both will detect that a is missing,
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
74 # one will create a, then the other will try to create a and die with
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
75 # a "File exists" error. This is a problem when calling mkinstalldirs
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
76 # from a parallel make. We use --version in the probe to restrict
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
77 # ourselves to GNU mkdir, which is thread-safe.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
78 case $dirmode in
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
79 '')
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
81 echo "mkdir -p -- $*"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
82 exec mkdir -p -- "$@"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
83 else
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
84 # On NextStep and OpenStep, the `mkdir' command does not
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
85 # recognize any option. It will interpret all options as
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
86 # directories to create, and then abort because `.' already
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
87 # exists.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
88 test -d ./-p && rmdir ./-p
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
89 test -d ./--version && rmdir ./--version
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
90 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
91 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
92 *)
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
94 test ! -d ./--version; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
95 echo "mkdir -m $dirmode -p -- $*"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
96 exec mkdir -m "$dirmode" -p -- "$@"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
97 else
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
98 # Clean up after NextStep and OpenStep mkdir.
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
99 for d in ./-m ./-p ./--version "./$dirmode";
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
100 do
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
101 test -d $d && rmdir $d
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
102 done
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
103 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
104 ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
105 esac
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
106
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
107 for file
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
108 do
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
109 case $file in
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
110 /*) pathcomp=/ ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
111 *) pathcomp= ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
112 esac
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
113 oIFS=$IFS
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
114 IFS=/
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
115 set fnord $file
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
116 shift
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
117 IFS=$oIFS
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
118
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
119 for d
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
120 do
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
121 test "x$d" = x && continue
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
122
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
123 pathcomp=$pathcomp$d
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
124 case $pathcomp in
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
125 -*) pathcomp=./$pathcomp ;;
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
126 esac
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
127
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
128 if test ! -d "$pathcomp"; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
129 echo "mkdir $pathcomp"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
130
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
131 mkdir "$pathcomp" || lasterr=$?
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
132
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
133 if test ! -d "$pathcomp"; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
134 errstatus=$lasterr
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
135 else
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
136 if test ! -z "$dirmode"; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
137 echo "chmod $dirmode $pathcomp"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
138 lasterr=
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
139 chmod "$dirmode" "$pathcomp" || lasterr=$?
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
140
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
141 if test ! -z "$lasterr"; then
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
142 errstatus=$lasterr
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
143 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
144 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
145 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
146 fi
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
147
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
148 pathcomp=$pathcomp/
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
149 done
2330
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
150 done
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
151
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
152 exit $errstatus
12ff450cbb1f [project @ 1996-07-19 01:39:22 by jwe]
jwe
parents:
diff changeset
153
12733
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
154 # Local Variables:
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
155 # mode: shell-script
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
156 # sh-indentation: 2
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
157 # eval: (add-hook 'write-file-hooks 'time-stamp)
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
158 # time-stamp-start: "scriptversion="
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
159 # time-stamp-format: "%:y-%02m-%02d.%02H"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
160 # time-stamp-time-zone: "UTC"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
161 # time-stamp-end: "; # UTC"
b67c2d580a25 maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents: 3285
diff changeset
162 # End: