616
|
1 #!/bin/sh
|
1628
|
2
|
|
3 #### make-dist: create an Emacs distribution tar file from the current
|
1688
|
4 #### source tree. This basically creates a duplicate directory
|
1628
|
5 #### structure, and then hard links into it only those files that should
|
|
6 #### be distributed. This means that if you add a file with an odd name,
|
|
7 #### you should make sure that this script will include it.
|
616
|
8
|
74439
|
9 # Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
|
106815
|
10 # 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
94720
|
11
|
11287
|
12 # This file is part of GNU Emacs.
|
|
13 #
|
94720
|
14 # GNU Emacs is free software: you can redistribute it and/or modify
|
11287
|
15 # it under the terms of the GNU General Public License as published by
|
94720
|
16 # the Free Software Foundation, either version 3 of the License, or
|
|
17 # (at your option) any later version.
|
|
18
|
11287
|
19 # GNU Emacs is distributed in the hope that it will be useful,
|
|
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22 # GNU General Public License for more details.
|
94720
|
23
|
11287
|
24 # You should have received a copy of the GNU General Public License
|
94720
|
25 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
26
|
11287
|
27
|
616
|
28 progname="$0"
|
|
29
|
1628
|
30 ### Exit if a command fails.
|
34081
|
31 #set -e
|
616
|
32
|
1628
|
33 ### Print out each line we read, for debugging's sake.
|
34081
|
34 #set -v
|
616
|
35
|
37925
|
36 LANGUAGE=C
|
|
37 LC_ALL=C
|
|
38 LC_MESSAGES=
|
|
39 LANG=
|
|
40 export LANGUAGE LC_ALL LC_MESSAGES LANG
|
|
41
|
20361
036dac77f78f
Changed the comment about `umask 0' to say `Don't restrict access to any
Joel N. Weber II <devnull@gnu.org>
diff
changeset
|
42 ## Don't restrict access to any files.
|
17603
|
43 umask 0
|
|
44
|
16806
|
45 update=yes
|
20785
|
46 check=yes
|
15060
|
47 clean_up=no
|
|
48 make_tar=no
|
992
|
49 newer=""
|
616
|
50
|
|
51 while [ $# -gt 0 ]; do
|
|
52 case "$1" in
|
15060
|
53 ## This option tells make-dist to delete the staging directory
|
|
54 ## when done. It is useless to use this unless you make a tar file.
|
|
55 "--clean-up" )
|
|
56 clean_up=yes
|
621
|
57 ;;
|
15060
|
58 ## This option tells make-dist to make a tar file.
|
|
59 "--tar" )
|
|
60 make_tar=yes
|
616
|
61 ;;
|
16806
|
62 ## This option tells make-dist not to recompile or do analogous things.
|
|
63 "--no-update" )
|
|
64 update=no
|
|
65 ;;
|
20785
|
66 ## This option says don't check for bad file names, etc.
|
|
67 "--no-check" )
|
|
68 check=no
|
|
69 ;;
|
1628
|
70 ## This option tells make-dist to make the distribution normally, then
|
2263
4b57c6f61299
Corrected typo, fixed it to discard = and TAGS files in some cases where it
Eric S. Raymond <esr@snark.thyrsus.com>
diff
changeset
|
71 ## remove all files older than the given timestamp file. This is useful
|
4b57c6f61299
Corrected typo, fixed it to discard = and TAGS files in some cases where it
Eric S. Raymond <esr@snark.thyrsus.com>
diff
changeset
|
72 ## for creating incremental or patch distributions.
|
992
|
73 "--newer")
|
999
|
74 newer="$2"
|
|
75 new_extension=".new"
|
992
|
76 shift
|
|
77 ;;
|
2254
|
78 ## This option tells make-dist to use `compress' instead of gzip.
|
|
79 ## Normally, make-dist uses gzip whenever it is present.
|
|
80 "--compress")
|
|
81 default_gzip="compress"
|
|
82 ;;
|
87594
|
83 ## Same with bzip2.
|
|
84 "--bzip2")
|
|
85 default_gzip="bzip2"
|
|
86 ;;
|
87782
|
87 ## Same with lzma.
|
|
88 "--lzma")
|
|
89 default_gzip="lzma"
|
|
90 ;;
|
29671
|
91
|
|
92 "--snapshot")
|
|
93 clean_up=yes
|
|
94 make_tar=yes
|
|
95 update=no
|
|
96 check=no
|
|
97 ;;
|
|
98
|
|
99 "--help")
|
|
100 echo "Usage: ${progname} [options]"
|
|
101 echo ""
|
87784
|
102 echo " --bzip2 use bzip2 instead of gzip"
|
29671
|
103 echo " --clean-up delete staging directories when done"
|
|
104 echo " --compress use compress instead of gzip"
|
87784
|
105 echo " --lzma use lzma instead of gzip"
|
29671
|
106 echo " --newer=TIME don't include files older than TIME"
|
|
107 echo " --no-check don't check for bad file names etc."
|
|
108 echo " --no-update don't recompile or do analogous things"
|
|
109 echo " --snapshot same as --clean-up --no-update --tar --no-check"
|
|
110 echo " --tar make a tar file"
|
|
111 echo ""
|
|
112 exit 0
|
|
113 ;;
|
|
114
|
616
|
115 * )
|
|
116 echo "${progname}: Unrecognized argument: $1" >&2
|
|
117 exit 1
|
|
118 ;;
|
|
119 esac
|
|
120 shift
|
|
121 done
|
|
122
|
1628
|
123 ### Make sure we're running in the right place.
|
616
|
124 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
|
992
|
125 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
|
|
126 echo "${progname} must be run in the top directory of the Emacs" >&2
|
4168
|
127 echo "distribution tree. cd to that directory and try again." >&2
|
616
|
128 exit 1
|
|
129 fi
|
|
130
|
16806
|
131 ### Find where to run Emacs.
|
72833
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
132 ### (Accept only absolute file names.)
|
16806
|
133 if [ $update = yes ];
|
|
134 then
|
24878
|
135 unset EMACS_UNIBYTE
|
16806
|
136 if [ -f src/emacs ];
|
|
137 then
|
|
138 EMACS=`pwd`/src/emacs
|
|
139 else
|
72833
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
140 case $EMACS in
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
141 /*) ;;
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
142 *)
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
143 if [ ! -f "$EMACS" ]; then
|
96526
|
144 echo "$0: You must set the EMACS environment variable " \
|
72833
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
145 "to an absolute file name." 2>&1
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
146 exit 1
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
147 fi;;
|
81a55a7dc3c3
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
Paul Eggert <eggert@twinsun.com>
diff
changeset
|
148 esac
|
16806
|
149 fi
|
|
150 fi
|
|
151
|
1628
|
152 ### Find out which version of Emacs this is.
|
7259
|
153 shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
|
7755
|
154 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
|
7259
|
155 version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
|
|
156 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
|
616
|
157 if [ ! "${version}" ]; then
|
14102
|
158 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
|
616
|
159 exit 1
|
|
160 fi
|
|
161
|
14102
|
162 echo Version numbers are $version and $shortversion
|
7755
|
163
|
16806
|
164 if [ $update = yes ];
|
|
165 then
|
84349
|
166 if grep -s "@set EMACSVER *${shortversion}" ./doc/emacs/emacs.texi > /dev/null; then
|
16806
|
167 true
|
|
168 else
|
84349
|
169 echo "You must update the version number in \`./doc/emacs/emacs.texi'"
|
16806
|
170 sleep 5
|
|
171 fi
|
2959
|
172 fi
|
|
173
|
5206
|
174 ### Make sure we don't already have a directory emacs-${version}.
|
|
175
|
|
176 emacsname="emacs-${version}${new_extension}"
|
|
177
|
|
178 if [ -d ${emacsname} ]
|
|
179 then
|
|
180 echo Directory "${emacsname}" already exists >&2
|
|
181 exit 1
|
|
182 fi
|
|
183
|
1628
|
184 ### Make sure the subdirectory is available.
|
992
|
185 tempparent="make-dist.tmp.$$"
|
616
|
186 if [ -d ${tempparent} ]; then
|
992
|
187 echo "${progname}: staging directory \`${tempparent}' already exists.
|
|
188 Perhaps a previous invocation of \`${progname}' failed to clean up after
|
|
189 itself. Check that directories whose names are of the form
|
|
190 \`make-dist.tmp.NNNNN' don't contain any important information, remove
|
|
191 them, and try again." >&2
|
616
|
192 exit 1
|
|
193 fi
|
|
194
|
20785
|
195 ### Find where to run Emacs.
|
|
196 if [ $check = yes ];
|
|
197 then
|
|
198 ### Check for .elc files with no corresponding .el file.
|
61546
|
199 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
|
105272
|
200 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
|
201 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
27562
|
202 leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
|
61546
|
203 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
|
105272
|
204 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
|
|
205 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
|
27562
|
206 leim/[a-z]*/[a-z]*.elc > /tmp/elc
|
20785
|
207 bogosities="`comm -13 /tmp/el /tmp/elc`"
|
|
208 if [ "${bogosities}" != "" ]; then
|
|
209 echo "The following .elc files have no corresponding .el files:"
|
|
210 echo "${bogosities}"
|
|
211 fi
|
|
212 rm -f /tmp/el /tmp/elc
|
3144
|
213
|
20785
|
214 ### Check for .el files with no corresponding .elc file.
|
61546
|
215 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
|
105272
|
216 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
|
217 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
61525
|
218 leim/[a-z]*/[a-z]*.el > /tmp/el
|
61546
|
219 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
|
105272
|
220 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
|
221 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
61525
|
222 leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc
|
20785
|
223 losers="`comm -23 /tmp/el /tmp/elc`"
|
|
224 bogosities=
|
|
225 for file in $losers; do
|
61525
|
226 if ! grep -q "no-byte-compile: t" $file; then
|
20785
|
227 case $file in
|
|
228 site-init.el | site-load.el | site-start.el | default.el)
|
|
229 ;;
|
|
230 *)
|
|
231 bogosities="$file $bogosities"
|
|
232 ;;
|
|
233 esac
|
|
234 fi
|
|
235 done
|
|
236 if [ x"${bogosities}" != x"" ]; then
|
|
237 echo "The following .el files have no corresponding .elc files:"
|
|
238 echo "${bogosities}"
|
18039
|
239 fi
|
20785
|
240 rm -f /tmp/el /tmp/elc
|
15301
|
241 fi
|
|
242
|
3258
|
243 ### Make sure configure is newer than configure.in.
|
43410
|
244 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then
|
14102
|
245 echo "\`./configure.in' is newer than \`./configure'" >&2
|
|
246 echo "Running autoconf" >&2
|
14978
c92fad046dd3
Wed Apr 10 06:08:48 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
diff
changeset
|
247 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
|
3258
|
248 fi
|
|
249
|
44597
|
250 ### Make sure src/config-in.stamp is newer than configure.in.
|
|
251 if [ "x`ls -t src/stamp-h.in configure.in | sed q`" != "xsrc/stamp-h.in" ]; then
|
|
252 echo "\`./configure.in' is newer than \`./src/stamp-h.in'" >&2
|
|
253 echo "Running autoheader" >&2
|
|
254 autoheader || { x=$?; echo Autoheader FAILED! >&2; exit $x; }
|
|
255 rm -f src/stamp-h.in
|
|
256 echo timestamp > src/stamp-h.in
|
|
257 fi
|
|
258
|
16806
|
259 if [ $update = yes ];
|
|
260 then
|
|
261 echo "Updating Info files"
|
84349
|
262 (cd doc/emacs; make -f Makefile.in srcdir=. info)
|
|
263 (cd doc/misc; make -f Makefile.in srcdir=. info)
|
|
264 (cd doc/lispref; make -f Makefile.in srcdir=. info)
|
|
265 (cd doc/lispintro; make -f Makefile.in SHELL=/bin/sh srcdir=. info VPATH=.)
|
14102
|
266
|
17747
|
267 echo "Updating finder, custom and autoload data"
|
24878
|
268 (cd lisp; make updates EMACS="$EMACS")
|
18992
|
269
|
27562
|
270 if test -f leim/leim-list.el; then
|
|
271 echo "Updating leim-list.el"
|
|
272 (cd leim; make leim-list.el EMACS="$EMACS")
|
|
273 fi
|
19820
|
274
|
|
275 echo "Recompiling Lisp files"
|
|
276 $EMACS -batch -f batch-byte-recompile-directory lisp leim
|
16806
|
277 fi
|
8201
|
278
|
13382
|
279 echo "Making lisp/MANIFEST"
|
|
280
|
22389
|
281 (cd lisp;
|
|
282 files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'`
|
|
283 for dir in [!=]*; do
|
27562
|
284 if [ -d $dir ] && [ $dir != term ] && [ $dir != CVS ] && [ $dir != RCS ]
|
|
285 then
|
22389
|
286 echo $dir
|
|
287 thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'`
|
|
288 files="$files $thisdir"
|
|
289 fi
|
|
290 done
|
43410
|
291 for file in $files
|
|
292 do sed -n 's/^;;; //p; q' $file
|
|
293 done | sort > MANIFEST)
|
13382
|
294
|
992
|
295 echo "Creating staging directory: \`${tempparent}'"
|
5206
|
296
|
616
|
297 mkdir ${tempparent}
|
|
298 tempdir="${tempparent}/${emacsname}"
|
|
299
|
1628
|
300 ### This trap ensures that the staging directory will be cleaned up even
|
|
301 ### when the script is interrupted in mid-career.
|
994
|
302 if [ "${clean_up}" = yes ]; then
|
14102
|
303 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
|
994
|
304 fi
|
|
305
|
992
|
306 echo "Creating top directory: \`${tempdir}'"
|
616
|
307 mkdir ${tempdir}
|
|
308
|
1628
|
309 ### We copy in the top-level files before creating the subdirectories in
|
|
310 ### hopes that this will make the top-level files appear first in the
|
|
311 ### tar file; this means that people can start reading the INSTALL and
|
|
312 ### README while the rest of the tar file is still unpacking. Whoopee.
|
14102
|
313 echo "Making links to top-level files"
|
86373
b4d02fc0c471
Include nXML. Don't try to copy FTP, it was removed on 2007/10/17.
Romain Francoise <romain@orebokech.com>
diff
changeset
|
314 ln INSTALL README BUGS move-if-change ${tempdir}
|
41783
84b7e5da33e2
Do not try to link removed files (aclocal.m4, _emacs, TODO, vms-pp.trans
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
315 ln ChangeLog Makefile.in configure configure.in ${tempdir}
|
100672
|
316 ln config.bat make-dist update-subdirs vpath.sed .dir-locals.el ${tempdir}
|
5206
|
317 ### Copy these files; they're cross-filesystem symlinks.
|
11223
|
318 cp mkinstalldirs ${tempdir}
|
1628
|
319 cp config.sub ${tempdir}
|
3374
|
320 cp config.guess ${tempdir}
|
28821
|
321 cp install-sh ${tempdir}
|
616
|
322
|
14102
|
323 echo "Updating version number in README"
|
2959
|
324 (cd ${tempdir}
|
|
325 awk \
|
|
326 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
|
|
327 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
|
|
328 version=${version} README > tmp.README
|
20238
|
329 mv -f tmp.README README)
|
2959
|
330
|
|
331
|
14102
|
332 echo "Creating subdirectories"
|
84349
|
333 for subdir in lisp site-lisp \
|
42218
|
334 leim leim/CXTERM-DIC leim/MISC-DIC \
|
42211
|
335 leim/SKK-DIC leim/ja-dic leim/quail \
|
5629
|
336 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
|
24181
|
337 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
|
91204
|
338 etc etc/charsets etc/e etc/gnus etc/nxml \
|
101761
|
339 etc/images etc/images/custom etc/images/ezimage etc/images/gnus \
|
|
340 etc/images/gud etc/images/icons etc/images/icons/hicolor \
|
92720
|
341 etc/images/icons/hicolor/*x* etc/images/icons/hicolor/scalable \
|
92723
|
342 etc/images/icons/hicolor/*/apps etc/images/icons/hicolor/*/mimetypes \
|
106356
|
343 etc/images/low-color etc/images/mail etc/images/mpc \
|
85755
|
344 etc/images/smilies etc/images/smilies/grayscale \
|
|
345 etc/images/smilies/medium etc/images/tree-widget \
|
|
346 etc/images/tree-widget/default etc/images/tree-widget/folder \
|
86373
b4d02fc0c471
Include nXML. Don't try to copy FTP, it was removed on 2007/10/17.
Romain Francoise <romain@orebokech.com>
diff
changeset
|
347 etc/refcards etc/schema etc/tutorials info doc doc/emacs \
|
97142
|
348 doc/misc doc/man doc/lispref doc/lispintro m4 msdos \
|
96725
|
349 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \
|
|
350 nextstep/Cocoa/Emacs.base/Contents \
|
|
351 nextstep/Cocoa/Emacs.base/Contents/Resources \
|
|
352 nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj \
|
|
353 nextstep/Cocoa/Emacs.xcodeproj \
|
|
354 nextstep/GNUstep \
|
|
355 nextstep/GNUstep/Emacs.base \
|
103571
|
356 nextstep/GNUstep/Emacs.base/Resources
|
33572
|
357 do
|
103572
|
358 ## site-lisp for in-place installs (?).
|
|
359 [ "$subdir" = "site-lisp" ] || [ -d "$subdir" ] || \
|
|
360 echo "WARNING: $subdir not found, making anyway"
|
33572
|
361 echo " ${tempdir}/${subdir}"
|
616
|
362 mkdir ${tempdir}/${subdir}
|
|
363 done
|
|
364
|
17603
|
365 echo "Making links to \`lisp' and its subdirectories"
|
2263
4b57c6f61299
Corrected typo, fixed it to discard = and TAGS files in some cases where it
Eric S. Raymond <esr@snark.thyrsus.com>
diff
changeset
|
366 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
|
616
|
367 (cd lisp
|
|
368 ln [a-zA-Z]*.el ../${tempdir}/lisp
|
|
369 ln [a-zA-Z]*.elc ../${tempdir}/lisp
|
1628
|
370 ## simula.el doesn't keep abbreviations in simula.defns any more.
|
|
371 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
|
61546
|
372 ln ChangeLog ChangeLog.*[0-9] ../${tempdir}/lisp
|
|
373 ln Makefile.in makefile.w32-in ../${tempdir}/lisp
|
27562
|
374 test -f README && ln README ../${tempdir}/lisp
|
17603
|
375 (cd ../${tempdir}/lisp
|
|
376 rm -f TAGS =*
|
|
377 rm -f site-init site-init.el site-init.elc
|
|
378 rm -f site-load site-load.el site-load.elc
|
|
379 rm -f site-start site-start.el site-start.elc
|
|
380 rm -f default default.el default.elc
|
|
381 )
|
616
|
382
|
17603
|
383 ## Find all subdirs of lisp dir
|
|
384 for file in `find . -type d -print`; do
|
|
385 case $file in
|
27562
|
386 . | .. | */Old | */CVS | */RCS | */=*)
|
49600
|
387 ;;
|
17603
|
388 *)
|
|
389 if [ -d $file ]; then
|
|
390 subdirs="$file $subdirs"
|
|
391 fi
|
|
392 ;;
|
|
393 esac
|
|
394 done
|
1792
|
395
|
17603
|
396 for file in $subdirs; do
|
|
397 echo " lisp/$file"
|
86373
b4d02fc0c471
Include nXML. Don't try to copy FTP, it was removed on 2007/10/17.
Romain Francoise <romain@orebokech.com>
diff
changeset
|
398 mkdir -p ../${tempdir}/lisp/$file
|
33572
|
399 ln $file/[a-zA-Z0-9]*.el ../${tempdir}/lisp/$file
|
|
400 ln $file/[a-zA-Z0-9]*.elc ../${tempdir}/lisp/$file
|
101761
|
401 ## calc/README.priv, nxml/TODO
|
|
402 for f in $file/[a-zA-Z]*.xpm $file/[a-zA-Z]*.[xp]bm \
|
|
403 $file/README $file/ChangeLog $file/ChangeLog.*[0-9] \
|
|
404 $file/README.prev $file/TODO; do
|
|
405 if [ -f $f ]; then
|
|
406 ln $f ../${tempdir}/lisp/$file
|
31732
|
407 fi
|
|
408 done
|
17603
|
409 done )
|
17138
|
410
|
42211
|
411 echo "Making links to \`leim' and its subdirectories"
|
18654
|
412 ### Don't distribute TAGS, or =*.el files.
|
|
413 (cd leim
|
62151
|
414 ln makefile.w32-in ../${tempdir}/leim
|
42211
|
415 ln ChangeLog README ../${tempdir}/leim
|
18654
|
416
|
101761
|
417 ln CXTERM-DIC/README CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC
|
42211
|
418 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC
|
101761
|
419 ln MISC-DIC/README MISC-DIC/*.* ../${tempdir}/leim/MISC-DIC
|
42211
|
420 ln ja-dic/*.el ja-dic/*.elc ../${tempdir}/leim/ja-dic
|
|
421 ln Makefile.in ../${tempdir}/leim/Makefile.in
|
56178
|
422 ln leim-ext.el ../${tempdir}/leim/leim-ext.el
|
101761
|
423 ## Lisp files that start with a capital (also 4Corner.el) are
|
|
424 ## generated from TIT dictionaries so we don't distribute them.
|
42211
|
425 ln quail/[a-z]*.el quail/[a-z]*.elc ../${tempdir}/leim/quail
|
|
426 rm -f ../${tempdir}/leim/quail/quick-b5.*
|
|
427 rm -f ../${tempdir}/leim/quail/quick-cns.*
|
|
428 rm -f ../${tempdir}/leim/quail/tsang-b5.*
|
|
429 rm -f ../${tempdir}/leim/quail/tsang-cns.*
|
27562
|
430
|
42211
|
431 cd ../${tempdir}/leim
|
18654
|
432 rm -f TAGS =* */=*)
|
|
433
|
14102
|
434 echo "Making links to \`src'"
|
1628
|
435 ### Don't distribute =*.[ch] files, or the configured versions of
|
13325
5a333a8e0ee1
Use new names config.in, paths.in, and {src,lib-src}/Makefile.in.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
436 ### config.in, paths.in, or Makefile.in, or TAGS.
|
616
|
437 (cd src
|
16806
|
438 echo " (It is ok if ln fails in some cases.)"
|
616
|
439 ln [a-zA-Z]*.c ../${tempdir}/src
|
|
440 ln [a-zA-Z]*.h ../${tempdir}/src
|
96725
|
441 ln [a-zA-Z]*.m ../${tempdir}/src
|
16806
|
442 ln [a-zA-Z]*.in ../${tempdir}/src
|
|
443 ## If we ended up with a symlink, or if we did not get anything
|
|
444 ## due to a cross-device symlink, copy the file.
|
101761
|
445 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in; do
|
16806
|
446 if test -f ../${tempdir}/src/$file; then
|
|
447 # test -f appears to succeed for a symlink
|
|
448 if test -L ../${tempdir}/src/$file; then
|
|
449 rm ../${tempdir}/src/$file
|
19962
|
450 cp -p $file ../${tempdir}/src
|
16806
|
451 chmod a-w ../${tempdir}/src/$file
|
|
452 fi
|
|
453 else
|
|
454 rm ../${tempdir}/src/$file
|
19962
|
455 cp -p $file ../${tempdir}/src
|
16806
|
456 chmod a-w ../${tempdir}/src/$file
|
|
457 fi
|
|
458 done
|
|
459 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
|
62151
|
460 ln makefile.w32-in ../${tempdir}/src
|
4489
|
461 ln .gdbinit .dbxinit ../${tempdir}/src
|
616
|
462 cd ../${tempdir}/src
|
34081
|
463 rm -f config.h epaths.h Makefile Makefile.c
|
2263
4b57c6f61299
Corrected typo, fixed it to discard = and TAGS files in some cases where it
Eric S. Raymond <esr@snark.thyrsus.com>
diff
changeset
|
464 rm -f =* TAGS)
|
616
|
465
|
14102
|
466 echo "Making links to \`src/bitmaps'"
|
2180
|
467 (cd src/bitmaps
|
|
468 ln README *.xbm ../../${tempdir}/src/bitmaps)
|
|
469
|
14102
|
470 echo "Making links to \`src/m'"
|
616
|
471 (cd src/m
|
8578
|
472 # We call files for miscellaneous input (to linker etc) .inp.
|
|
473 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
|
616
|
474
|
14102
|
475 echo "Making links to \`src/s'"
|
616
|
476 (cd src/s
|
11666
|
477 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
|
616
|
478
|
14102
|
479 echo "Making links to \`lib-src'"
|
616
|
480 (cd lib-src
|
96725
|
481 ln [a-zA-Z]*.[chmy] ../${tempdir}/lib-src
|
13325
5a333a8e0ee1
Use new names config.in, paths.in, and {src,lib-src}/Makefile.in.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
482 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
|
101761
|
483 ln b2m.pl grep-changelog rcs2log rcs-checkin ../${tempdir}/lib-src
|
33572
|
484 ln makefile.w32-in ../${tempdir}/lib-src
|
16806
|
485 ## If we ended up with a symlink, or if we did not get anything
|
|
486 ## due to a cross-device symlink, copy the file.
|
|
487 for file in [a-zA-Z]*.[chy]; do
|
|
488 if test -f ../${tempdir}/lib-src/$file; then
|
|
489 # test -f appears to succeed for a symlink
|
|
490 if test -L ../${tempdir}/lib-src/$file; then
|
|
491 rm ../${tempdir}/lib-src/$file
|
|
492 cp $file ../${tempdir}/lib-src
|
|
493 chmod a-w ../${tempdir}/lib-src/$file
|
|
494 fi
|
|
495 else
|
|
496 rm ../${tempdir}/lib-src/$file
|
|
497 cp $file ../${tempdir}/lib-src
|
|
498 chmod a-w ../${tempdir}/lib-src/$file
|
|
499 fi
|
|
500 done
|
992
|
501 cd ../${tempdir}/lib-src
|
16806
|
502 rm -f Makefile.c
|
64639
|
503 rm -f getopt.h
|
2263
4b57c6f61299
Corrected typo, fixed it to discard = and TAGS files in some cases where it
Eric S. Raymond <esr@snark.thyrsus.com>
diff
changeset
|
504 rm -f =* TAGS)
|
616
|
505
|
64639
|
506 echo "Making links to \`m4'"
|
|
507 (cd m4
|
|
508 ln *.m4 ../${tempdir}/m4)
|
|
509
|
14102
|
510 echo "Making links to \`nt'"
|
9805
|
511 (cd nt
|
80732
|
512 ln emacs.manifest emacs.rc emacsclient.rc config.nt [a-z]*.c ../${tempdir}/nt
|
41783
84b7e5da33e2
Do not try to link removed files (aclocal.m4, _emacs, TODO, vms-pp.trans
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
513 ln nmake.defs gmake.defs subdirs.el ../${tempdir}/nt
|
62151
|
514 ln [a-z]*.bat [a-z]*.h ../${tempdir}/nt
|
41783
84b7e5da33e2
Do not try to link removed files (aclocal.m4, _emacs, TODO, vms-pp.trans
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
515 ln ChangeLog INSTALL README makefile.w32-in ../${tempdir}/nt)
|
9805
|
516
|
14102
|
517 echo "Making links to \`nt/inc'"
|
9805
|
518 (cd nt/inc
|
11666
|
519 ln [a-z]*.h ../../${tempdir}/nt/inc)
|
9805
|
520
|
14102
|
521 echo "Making links to \`nt/inc/sys'"
|
9805
|
522 (cd nt/inc/sys
|
11666
|
523 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
|
9805
|
524
|
15158
|
525 echo "Making links to \`nt/inc/arpa'"
|
|
526 (cd nt/inc/arpa
|
|
527 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
|
|
528
|
|
529 echo "Making links to \`nt/inc/netinet'"
|
|
530 (cd nt/inc/netinet
|
|
531 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
|
|
532
|
24181
|
533 echo "Making links to \`nt/icons'"
|
|
534 (cd nt/icons
|
101761
|
535 ln README [a-z]*.ico ../../${tempdir}/nt/icons
|
53521
|
536 ln [a-z]*.cur ../../${tempdir}/nt/icons)
|
24181
|
537
|
14102
|
538 echo "Making links to \`msdos'"
|
5471
|
539 (cd msdos
|
101761
|
540 ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos
|
15823
|
541 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
|
5471
|
542 cd ../${tempdir}/msdos
|
|
543 rm -f =*)
|
|
544
|
101749
|
545 ## FIXME are DEV-NOTES and FOR-RELEASE appropriate?
|
96725
|
546 echo "Making links to \`nextstep'"
|
|
547 (cd nextstep
|
101749
|
548 ln AUTHORS ChangeLog DEV-NOTES FOR-RELEASE README INSTALL ../${tempdir}/nextstep)
|
96725
|
549
|
|
550 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents'"
|
|
551 (cd nextstep/Cocoa/Emacs.base/Contents
|
|
552 ln Info.plist PkgInfo ../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents)
|
|
553
|
|
554 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources'"
|
|
555 (cd nextstep/Cocoa/Emacs.base/Contents/Resources
|
101750
|
556 ln Credits.html *.icns ../../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents/Resources)
|
96725
|
557
|
|
558 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj'"
|
|
559 (cd nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj
|
|
560 ln InfoPlist.strings ../../../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj)
|
|
561
|
|
562 echo "Making links to \`nextstep/Cocoa/Emacs.xcodeproj'"
|
|
563 (cd nextstep/Cocoa/Emacs.xcodeproj
|
|
564 ln project.pbxproj ../../../${tempdir}/nextstep/Cocoa/Emacs.xcodeproj)
|
|
565
|
|
566 echo "Making links to \`nextstep/GNUstep/Emacs.base/Resources'"
|
|
567 (cd nextstep/GNUstep/Emacs.base/Resources
|
101750
|
568 ln Emacs.desktop Info-gnustep.plist README emacs.tiff ../../../../${tempdir}/nextstep/GNUstep/Emacs.base/Resources )
|
96725
|
569
|
14102
|
570 echo "Making links to \`oldXMenu'"
|
616
|
571 (cd oldXMenu
|
2832
47d8f937a4bc
* make-dist: Include any *.in files in oldXMenu in the distribution.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
572 ln *.c *.h *.in ../${tempdir}/oldXMenu
|
97142
|
573 ln README ChangeLog ../${tempdir}/oldXMenu)
|
616
|
574
|
14102
|
575 echo "Making links to \`lwlib'"
|
5629
|
576 (cd lwlib
|
|
577 ln *.c *.h *.in ../${tempdir}/lwlib
|
44958
|
578 ln README ChangeLog ../${tempdir}/lwlib)
|
5629
|
579
|
14102
|
580 echo "Making links to \`etc'"
|
2487
|
581 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
|
|
582 ### tex litter.
|
616
|
583 (cd etc
|
62151
|
584 files=`ls -d * | grep -v CVS | grep -v RCS | grep -v 'Old' | grep -v '^e$' \
|
91204
|
585 | grep -v '^charsets$' | grep -v '^gnus$' | grep -v '^images$' | grep -v '^nxml$' \
|
86938
|
586 | grep -v '^refcards$' | grep -v '^tutorials$'| grep -v '^schema$'`
|
18691
|
587 ln $files ../${tempdir}/etc
|
18515
|
588 ## If we ended up with a symlink, or if we did not get anything
|
|
589 ## due to a cross-device symlink, copy the file.
|
18691
|
590 for file in $files; do
|
18515
|
591 if test -f ../${tempdir}/etc/$file; then
|
|
592 # test -f appears to succeed for a symlink
|
|
593 if test -L ../${tempdir}/etc/$file; then
|
|
594 rm ../${tempdir}/etc/$file
|
|
595 cp $file ../${tempdir}/etc
|
|
596 chmod a-w ../${tempdir}/etc/$file
|
|
597 fi
|
|
598 else
|
|
599 rm ../${tempdir}/etc/$file
|
|
600 cp $file ../${tempdir}/etc
|
|
601 chmod a-w ../${tempdir}/etc/$file
|
|
602 fi
|
|
603 done
|
616
|
604 cd ../${tempdir}/etc
|
84349
|
605 rm -f fns*.el
|
13634
|
606 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
|
2487
|
607 rm -f TAGS)
|
616
|
608
|
91204
|
609 for dir in etc/charsets etc/e etc/gnus etc/nxml etc/tutorials etc/refcards etc/schema ; do
|
82763
|
610 echo "Making links to \`${dir}'"
|
|
611 (cd ${dir}
|
|
612 ln `ls -d * | grep -v CVS | grep -v RCS` ../../${tempdir}/${dir}
|
|
613 cd ../../${tempdir}/${dir}
|
|
614 rm -f *~ \#*\# *,v =* core)
|
|
615 done
|
10065
|
616
|
65898
|
617 echo "Making links to \`etc/images'"
|
|
618 (cd etc/images
|
96526
|
619 for f in *; do
|
|
620 [ -f "$f" ] || continue
|
|
621 case $f in
|
|
622 (*~|\#*\#|*,v|=*|core) continue ;;
|
|
623 esac
|
|
624 ln $f ../../${tempdir}/etc/images
|
65898
|
625 done)
|
|
626
|
101761
|
627 for dir in etc/images/custom etc/images/ezimage etc/images/gnus \
|
|
628 etc/images/gud etc/images/icons etc/images/low-color etc/images/mail \
|
106356
|
629 etc/images/mpc etc/images/smilies ; do
|
62151
|
630 echo "Making links to \`${dir}'"
|
|
631 (cd ${dir}
|
96526
|
632 for f in *; do
|
|
633 [ -f "$f" ] || continue
|
|
634 case $f in
|
|
635 (*~|\#*\#|*,v|=*|core) continue ;;
|
|
636 esac
|
|
637 ln $f ../../../${tempdir}/${dir}
|
|
638 done
|
|
639 )
|
62151
|
640 done
|
|
641
|
85755
|
642 for dir in etc/images/tree-widget/default etc/images/tree-widget/folder \
|
87582
|
643 etc/images/smilies/grayscale etc/images/smilies/medium; do
|
82763
|
644 echo "Making links to \`${dir}'"
|
|
645 (cd ${dir}
|
|
646 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../${tempdir}/${dir}
|
|
647 cd ../../../../${tempdir}/${dir}
|
|
648 rm -f *~ \#*\# *,v =* core)
|
|
649 done
|
|
650
|
92723
|
651 for dir in etc/images/icons/hicolor/*/apps \
|
|
652 etc/images/icons/hicolor/*/mimetypes; do
|
87582
|
653 echo "Making links to \`${dir}'"
|
|
654 (cd ${dir}
|
|
655 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../../../${tempdir}/${dir}
|
|
656 cd ../../../../../../${tempdir}/${dir}
|
62151
|
657 rm -f *~ \#*\# *,v =* core)
|
|
658 done
|
|
659
|
14102
|
660 echo "Making links to \`info'"
|
2792
|
661 # Don't distribute backups or autosaves.
|
|
662 (cd info
|
33572
|
663 ln `find . -type f -print | grep -v CVS | grep -v RCS | grep -v cvsignore` ../${tempdir}/info
|
27562
|
664 #ln [a-zA-Z]* ../${tempdir}/info
|
2792
|
665 cd ../${tempdir}/info
|
|
666 # Avoid an error when expanding the wildcards later.
|
|
667 ln emacs dummy~ ; ln emacs \#dummy\#
|
102322
|
668 rm -f *~ \#*\# core .arch-inventory .gitignore)
|
1792
|
669
|
84349
|
670 echo "Making links to \`doc/emacs'"
|
|
671 (cd doc/emacs
|
101761
|
672 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/emacs
|
84349
|
673 ln makefile.w32-in ../../${tempdir}/doc/emacs
|
|
674 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/emacs
|
|
675 ln ChangeLog ../../${tempdir}/doc/emacs
|
|
676 cd ../../${tempdir}/doc/emacs
|
|
677 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
|
|
678 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
|
|
679
|
|
680 echo "Making links to \`doc/misc'"
|
|
681 (cd doc/misc
|
101761
|
682 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/misc
|
84349
|
683 ln makefile.w32-in ../../${tempdir}/doc/misc
|
101761
|
684 ln gnus-news.el ../../${tempdir}/doc/misc
|
84349
|
685 test -f README && ln README ../../${tempdir}/doc/misc
|
|
686 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/misc
|
|
687 ln ChangeLog ../../${tempdir}/doc/misc
|
|
688 cp texinfo.tex ../../${tempdir}/doc/misc
|
|
689 cd ../../${tempdir}/doc/misc
|
2676
|
690 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
|
|
691 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
|
616
|
692
|
101761
|
693 ## FIXME book-spine.texinfo unused?
|
84349
|
694 echo "Making links to \`doc/lispref'"
|
|
695 (cd doc/lispref
|
101761
|
696 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/lispref
|
84349
|
697 ln *.txt *.el spellfile tindex.pl ../../${tempdir}/doc/lispref
|
|
698 ln makefile.w32-in ../../${tempdir}/doc/lispref
|
101761
|
699 ln book-spine.texinfo two-volume.make ../../${tempdir}/doc/lispref
|
84349
|
700 test -f README && ln README ../../${tempdir}/doc/lispref
|
|
701 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispref
|
|
702 ln ChangeLog ../../${tempdir}/doc/lispref
|
|
703 cd ../../${tempdir}/doc/lispref
|
40885
|
704 rm -f \#*\# =* *~ core elisp-index* *.Z *.z xmail
|
|
705 rm -f elisp.?? *.log *.toc *.dvi *.oaux)
|
|
706
|
84349
|
707 echo "Making links to \`doc/lispintro'"
|
|
708 (cd doc/lispintro
|
105778
|
709 ln *.texi *.aux *.fns *.kys *.vrs *.eps *.pdf ../../${tempdir}/doc/lispintro
|
84349
|
710 ln makefile.w32-in ../../${tempdir}/doc/lispintro
|
|
711 test -f README && ln README ../../${tempdir}/doc/lispintro
|
|
712 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispintro
|
|
713 ln ChangeLog ../../${tempdir}/doc/lispintro
|
|
714 cd ../../${tempdir}/doc/lispintro
|
41435
|
715 rm -f \#*\# =* *~ core *.Z *.z xmail
|
|
716 rm -f emacs-lisp-intro.?? *.log *.toc *.dvi *.oaux)
|
|
717
|
84349
|
718 echo "Making links to \`doc/man'"
|
|
719 (cd doc/man
|
98074
|
720 ln *.1 ../../${tempdir}/doc/man
|
|
721 ln ChangeLog ../../${tempdir}/doc/man)
|
1364
|
722
|
41906
|
723 ### It would be nice if they could all be symlinks to top-level copy, but
|
1700
|
724 ### you're not supposed to have any symlinks in distribution tar files.
|
41682
|
725 echo "Making sure copying notices are all copies of \`COPYING'"
|
97043
|
726 for subdir in . etc info leim lib-src lisp lwlib msdos nt src; do
|
41663
1cc9127ddf72
Add COPYING to the top-level directory of the distribution. Simplify the
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
727 rm -f ${tempdir}/${subdir}/COPYING
|
41682
|
728 cp COPYING ${tempdir}/${subdir}
|
616
|
729 done
|
|
730
|
992
|
731 if [ "${newer}" ]; then
|
14102
|
732 echo "Removing files older than $newer"
|
1628
|
733 ## We remove .elc files unconditionally, on the theory that anyone picking
|
|
734 ## up an incremental distribution already has a running Emacs to byte-compile
|
|
735 ## them with.
|
992
|
736 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
|
|
737 fi
|
|
738
|
621
|
739 if [ "${make_tar}" = yes ]; then
|
2254
|
740 if [ "${default_gzip}" = "" ]; then
|
14102
|
741 echo "Looking for gzip"
|
2254
|
742 temppath=`echo $PATH | sed 's/^:/.:/
|
|
743 s/::/:.:/g
|
|
744 s/:$/:./
|
|
745 s/:/ /g'`
|
|
746 default_gzip=`(
|
|
747 for dir in ${temppath}; do
|
|
748 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
|
|
749 done
|
|
750 echo compress
|
|
751 )`
|
|
752 fi
|
2487
|
753 case "${default_gzip}" in
|
87594
|
754 bzip2) gzip_extension=.bz2 ;;
|
2487
|
755 compress* ) gzip_extension=.Z ;;
|
87782
|
756 lzma) gzip_extension=.lzma ;;
|
3818
ec5cc4995395
* make-dist: If using gzip, create distribution with '.gz' extension.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
757 * ) gzip_extension=.gz ;;
|
2487
|
758 esac
|
42211
|
759 echo "Creating tar file"
|
2487
|
760 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
|
|
761 | ${default_gzip} \
|
|
762 > ${emacsname}.tar${gzip_extension}
|
621
|
763 fi
|
616
|
764
|
621
|
765 if [ "${clean_up}" = yes ]; then
|
14102
|
766 echo "Cleaning up the staging directory"
|
2487
|
767 rm -rf ${tempparent}
|
5206
|
768 else
|
42211
|
769 (cd ${tempparent}; mv ${emacsname} ..)
|
5206
|
770 rm -rf ${tempparent}
|
616
|
771 fi
|
994
|
772
|
52401
|
773 # arch-tag: 26e3eb50-a394-4ab2-82b2-d8e5af500de7
|
1628
|
774 ### make-dist ends here
|