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
|
18515
|
9 # Copyright (C) 1995, 1997 Free Software Foundation, Inc.
|
11287
|
10 #
|
|
11 # This file is part of GNU Emacs.
|
|
12 #
|
|
13 # GNU Emacs is free software; you can redistribute it and/or modify
|
|
14 # it under the terms of the GNU General Public License as published by
|
|
15 # the Free Software Foundation; either version 2, or (at your option)
|
|
16 # any later version.
|
|
17 #
|
|
18 # GNU Emacs is distributed in the hope that it will be useful,
|
|
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21 # GNU General Public License for more details.
|
|
22 #
|
|
23 # You should have received a copy of the GNU General Public License
|
15742
|
24 # along with GNU Emacs; see the file COPYING. If not, write to the
|
|
25 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
26 # Boston, MA 02111-1307, USA.
|
11287
|
27
|
616
|
28 progname="$0"
|
|
29
|
1628
|
30 ### Exit if a command fails.
|
|
31 ### set -e
|
616
|
32
|
1628
|
33 ### Print out each line we read, for debugging's sake.
|
|
34 ### set -v
|
616
|
35
|
17603
|
36 ## Don't protect any files.
|
|
37 umask 0
|
|
38
|
16806
|
39 update=yes
|
15060
|
40 clean_up=no
|
|
41 make_tar=no
|
992
|
42 newer=""
|
616
|
43
|
|
44 while [ $# -gt 0 ]; do
|
|
45 case "$1" in
|
15060
|
46 ## This option tells make-dist to delete the staging directory
|
|
47 ## when done. It is useless to use this unless you make a tar file.
|
|
48 "--clean-up" )
|
|
49 clean_up=yes
|
621
|
50 ;;
|
15060
|
51 ## This option tells make-dist to make a tar file.
|
|
52 "--tar" )
|
|
53 make_tar=yes
|
616
|
54 ;;
|
16806
|
55 ## This option tells make-dist not to recompile or do analogous things.
|
|
56 "--no-update" )
|
|
57 update=no
|
|
58 ;;
|
1628
|
59 ## 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
|
60 ## 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
|
61 ## for creating incremental or patch distributions.
|
992
|
62 "--newer")
|
999
|
63 newer="$2"
|
|
64 new_extension=".new"
|
992
|
65 shift
|
|
66 ;;
|
2254
|
67 ## This option tells make-dist to use `compress' instead of gzip.
|
|
68 ## Normally, make-dist uses gzip whenever it is present.
|
|
69 "--compress")
|
|
70 default_gzip="compress"
|
|
71 ;;
|
616
|
72 * )
|
|
73 echo "${progname}: Unrecognized argument: $1" >&2
|
|
74 exit 1
|
|
75 ;;
|
|
76 esac
|
|
77 shift
|
|
78 done
|
|
79
|
1628
|
80 ### Make sure we're running in the right place.
|
616
|
81 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
|
992
|
82 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
|
|
83 echo "${progname} must be run in the top directory of the Emacs" >&2
|
4168
|
84 echo "distribution tree. cd to that directory and try again." >&2
|
616
|
85 exit 1
|
|
86 fi
|
|
87
|
16806
|
88 ### Find where to run Emacs.
|
|
89 if [ $update = yes ];
|
|
90 then
|
|
91 if [ -f src/emacs ];
|
|
92 then
|
|
93 EMACS=`pwd`/src/emacs
|
|
94 else
|
|
95 if [ x$EMACS = x ];
|
|
96 then
|
|
97 echo You must specify the EMACS environment variable 2>&1
|
|
98 exit 1
|
|
99 fi
|
|
100 fi
|
|
101 fi
|
|
102
|
1628
|
103 ### Find out which version of Emacs this is.
|
7259
|
104 shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
|
7755
|
105 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
|
7259
|
106 version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
|
|
107 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
|
616
|
108 if [ ! "${version}" ]; then
|
14102
|
109 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
|
616
|
110 exit 1
|
|
111 fi
|
|
112
|
14102
|
113 echo Version numbers are $version and $shortversion
|
7755
|
114
|
16806
|
115 if [ $update = yes ];
|
|
116 then
|
|
117 if grep -s "GNU Emacs version ${shortversion}" ./man/emacs.texi > /dev/null; then
|
|
118 true
|
|
119 else
|
|
120 echo "You must update the version number in \`./man/emacs.texi'"
|
|
121 sleep 5
|
|
122 fi
|
2959
|
123 fi
|
|
124
|
5206
|
125 ### Make sure we don't already have a directory emacs-${version}.
|
|
126
|
|
127 emacsname="emacs-${version}${new_extension}"
|
|
128
|
|
129 if [ -d ${emacsname} ]
|
|
130 then
|
|
131 echo Directory "${emacsname}" already exists >&2
|
|
132 exit 1
|
|
133 fi
|
|
134
|
1628
|
135 ### Make sure the subdirectory is available.
|
992
|
136 tempparent="make-dist.tmp.$$"
|
616
|
137 if [ -d ${tempparent} ]; then
|
992
|
138 echo "${progname}: staging directory \`${tempparent}' already exists.
|
|
139 Perhaps a previous invocation of \`${progname}' failed to clean up after
|
|
140 itself. Check that directories whose names are of the form
|
|
141 \`make-dist.tmp.NNNNN' don't contain any important information, remove
|
|
142 them, and try again." >&2
|
616
|
143 exit 1
|
|
144 fi
|
|
145
|
3144
|
146 ### Check for .elc files with no corresponding .el file.
|
18691
|
147 ls -1 lisp/[a-z]*.el lisp/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
|
|
148 ls -1 lisp/[a-z]*.elc lisp/[a-z]*/[a-z]*.elc > /tmp/elc
|
3146
|
149 bogosities="`comm -13 /tmp/el /tmp/elc`"
|
|
150 if [ "${bogosities}" != "" ]; then
|
|
151 echo "The following .elc files have no corresponding .el files:"
|
|
152 echo "${bogosities}"
|
|
153 fi
|
3155
|
154 rm -f /tmp/el /tmp/elc
|
3144
|
155
|
18039
|
156 ### Check for .el files with no corresponding .elc file.
|
18691
|
157 (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el
|
|
158 (cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc
|
18039
|
159 losers="`comm -23 /tmp/el /tmp/elc`"
|
18467
|
160 bogosities=
|
18039
|
161 for file in $losers; do
|
18693
|
162 file1=`echo $file | sed -e "s|.*/||"`
|
|
163 if ! grep -q "dontcompilefiles:.* $file1\($\| \)" lisp/Makefile; then
|
|
164 case $file in
|
|
165 site-init.el | site-load.el | site-start.el | default.el)
|
|
166 ;;
|
|
167 term/*)
|
|
168 ;;
|
|
169 *)
|
|
170 bogosities="$file $bogosities"
|
|
171 ;;
|
|
172 esac
|
18039
|
173 fi
|
|
174 done
|
18654
|
175 if [ x"${bogosities}" != x"" ]; then
|
18467
|
176 echo "The following .el files have no corresponding .elc files:"
|
18039
|
177 echo "${bogosities}"
|
|
178 fi
|
|
179 rm -f /tmp/el /tmp/elc
|
|
180
|
15301
|
181 ### Check for .el files that would overflow the 14-char limit if compiled.
|
15569
|
182 long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
|
15301
|
183 if [ "$long" != "" ]; then
|
|
184 echo "The following .el file names are too long:"
|
|
185 echo "$long"
|
|
186 fi
|
|
187
|
3258
|
188 ### Make sure configure is newer than configure.in.
|
|
189 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
|
14102
|
190 echo "\`./configure.in' is newer than \`./configure'" >&2
|
|
191 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
|
192 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
|
3258
|
193 fi
|
|
194
|
16806
|
195 if [ $update = yes ];
|
|
196 then
|
|
197 echo "Updating Info files"
|
8345
|
198
|
16806
|
199 (cd man; make info)
|
14102
|
200
|
16806
|
201 echo "Recompiling Lisp files"
|
14102
|
202
|
16806
|
203 $EMACS -batch -f batch-byte-recompile-directory lisp
|
14102
|
204
|
17747
|
205 echo "Updating finder, custom and autoload data"
|
17400
|
206
|
17747
|
207 (cd lisp; make updates)
|
16806
|
208 fi
|
8201
|
209
|
13382
|
210 echo "Making lisp/MANIFEST"
|
|
211
|
15002
|
212 (cd lisp; head -1 [!=]*.el | grep '^;' | sed -e 's/;;; //' > MANIFEST)
|
13382
|
213
|
992
|
214 echo "Creating staging directory: \`${tempparent}'"
|
5206
|
215
|
616
|
216 mkdir ${tempparent}
|
|
217 tempdir="${tempparent}/${emacsname}"
|
|
218
|
1628
|
219 ### This trap ensures that the staging directory will be cleaned up even
|
|
220 ### when the script is interrupted in mid-career.
|
994
|
221 if [ "${clean_up}" = yes ]; then
|
14102
|
222 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
|
994
|
223 fi
|
|
224
|
992
|
225 echo "Creating top directory: \`${tempdir}'"
|
616
|
226 mkdir ${tempdir}
|
|
227
|
1628
|
228 ### We copy in the top-level files before creating the subdirectories in
|
|
229 ### hopes that this will make the top-level files appear first in the
|
|
230 ### tar file; this means that people can start reading the INSTALL and
|
|
231 ### README while the rest of the tar file is still unpacking. Whoopee.
|
14102
|
232 echo "Making links to top-level files"
|
7883
|
233 ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README BUGS move-if-change ${tempdir}
|
9505
|
234 ln ChangeLog Makefile.in configure configure.in ${tempdir}
|
9578
|
235 ln config.bat make-dist update-subdirs vpath.sed ${tempdir}
|
5206
|
236 ### Copy these files; they're cross-filesystem symlinks.
|
11223
|
237 cp mkinstalldirs ${tempdir}
|
1628
|
238 cp config.sub ${tempdir}
|
3374
|
239 cp config.guess ${tempdir}
|
5206
|
240 cp install.sh ${tempdir}
|
616
|
241
|
14102
|
242 echo "Updating version number in README"
|
2959
|
243 (cd ${tempdir}
|
|
244 awk \
|
|
245 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
|
|
246 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
|
|
247 version=${version} README > tmp.README
|
|
248 mv tmp.README README)
|
|
249
|
|
250
|
14102
|
251 echo "Creating subdirectories"
|
18654
|
252 for subdir in lisp site-lisp leim real-leim real-leim/CXTERM-DIC \
|
|
253 real-leim/SKK real-leim/skk real-leim/quail \
|
5629
|
254 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
|
15158
|
255 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet \
|
11185
|
256 etc etc/e lock cpp info man msdos vms; do
|
616
|
257 mkdir ${tempdir}/${subdir}
|
|
258 done
|
|
259
|
18654
|
260 echo "Initializing \`leim' subdirectory"
|
|
261 cp leim-Makefile.in ${tempdir}/leim/Makefile.in
|
|
262
|
17603
|
263 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
|
264 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
|
616
|
265 (cd lisp
|
|
266 ln [a-zA-Z]*.el ../${tempdir}/lisp
|
|
267 ln [a-zA-Z]*.elc ../${tempdir}/lisp
|
5033
|
268 ln [a-zA-Z]*.dat ../${tempdir}/lisp
|
1628
|
269 ## simula.el doesn't keep abbreviations in simula.defns any more.
|
|
270 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
|
14955
|
271 ln ChangeLog Makefile makefile.nt ChangeLog.? README ../${tempdir}/lisp
|
17603
|
272 (cd ../${tempdir}/lisp
|
|
273 rm -f TAGS =*
|
|
274 rm -f site-init site-init.el site-init.elc
|
|
275 rm -f site-load site-load.el site-load.elc
|
|
276 rm -f site-start site-start.el site-start.elc
|
|
277 rm -f default default.el default.elc
|
|
278 )
|
616
|
279
|
17603
|
280 ## Find all subdirs of lisp dir
|
|
281 for file in `find . -type d -print`; do
|
|
282 case $file in
|
18468
|
283 . | .. | */Old | */RCS | */=*)
|
17603
|
284 ;;
|
|
285 *)
|
|
286 if [ -d $file ]; then
|
|
287 subdirs="$file $subdirs"
|
|
288 fi
|
|
289 ;;
|
|
290 esac
|
|
291 done
|
1792
|
292
|
17603
|
293 for file in $subdirs; do
|
|
294 echo " lisp/$file"
|
|
295 mkdir ../${tempdir}/lisp/$file
|
|
296 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file
|
|
297 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file
|
|
298 if [ -f $file/README ]; then
|
|
299 ln $file/README ../${tempdir}/lisp/$file
|
|
300 fi
|
|
301 done )
|
17138
|
302
|
18654
|
303 echo "Making links to \`leim' and its subdirectories for the LEIM distribution"
|
|
304 ### Don't distribute TAGS, or =*.el files.
|
|
305 (cd leim
|
|
306 ln Makefile.in makefile.nt ../${tempdir}/real-leim
|
|
307 ln ChangeLog.? README ../${tempdir}/real-leim
|
|
308
|
|
309 ln CXTERM-DIC/*.tit ../${tempdir}/real-leim/CXTERM-DIC
|
|
310 ln SKK/README SKK/SKK-JISYO.L ../${tempdir}/real-leim/SKK
|
|
311 ln skk/*.el skk/*.elc ../${tempdir}/real-leim/skk
|
|
312 ln quail/*.el quail/*.elc ../${tempdir}/real-leim/quail
|
|
313
|
|
314 cd ../${tempdir}/real-leim
|
|
315 rm -f TAGS =* */=*)
|
|
316
|
|
317 ### Move the real-leim directory outside of Emacs proper.
|
|
318 (cd ${tempparent}; mv ${emacsname}/real-leim ${emacsname}-leim)
|
|
319
|
14102
|
320 echo "Making links to \`src'"
|
1628
|
321 ### 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
|
322 ### config.in, paths.in, or Makefile.in, or TAGS.
|
616
|
323 (cd src
|
16806
|
324 echo " (It is ok if ln fails in some cases.)"
|
616
|
325 ln [a-zA-Z]*.c ../${tempdir}/src
|
|
326 ln [a-zA-Z]*.h ../${tempdir}/src
|
|
327 ln [a-zA-Z]*.s ../${tempdir}/src
|
16806
|
328 ln [a-zA-Z]*.in ../${tempdir}/src
|
|
329 ln [a-zA-Z]*.opt ../${tempdir}/src
|
|
330 ## If we ended up with a symlink, or if we did not get anything
|
|
331 ## due to a cross-device symlink, copy the file.
|
|
332 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do
|
|
333 if test -f ../${tempdir}/src/$file; then
|
|
334 # test -f appears to succeed for a symlink
|
|
335 if test -L ../${tempdir}/src/$file; then
|
|
336 rm ../${tempdir}/src/$file
|
|
337 cp $file ../${tempdir}/src
|
|
338 chmod a-w ../${tempdir}/src/$file
|
|
339 fi
|
|
340 else
|
|
341 rm ../${tempdir}/src/$file
|
|
342 cp $file ../${tempdir}/src
|
|
343 chmod a-w ../${tempdir}/src/$file
|
|
344 fi
|
|
345 done
|
|
346 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
|
|
347 ln makefile.nt vms-pp.trans ../${tempdir}/src
|
4489
|
348 ln .gdbinit .dbxinit ../${tempdir}/src
|
616
|
349 cd ../${tempdir}/src
|
13383
|
350 rm -f config.h paths.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
|
351 rm -f =* TAGS)
|
616
|
352
|
14102
|
353 echo "Making links to \`src/bitmaps'"
|
2180
|
354 (cd src/bitmaps
|
|
355 ln README *.xbm ../../${tempdir}/src/bitmaps)
|
|
356
|
14102
|
357 echo "Making links to \`src/m'"
|
616
|
358 (cd src/m
|
8578
|
359 # We call files for miscellaneous input (to linker etc) .inp.
|
|
360 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
|
616
|
361
|
14102
|
362 echo "Making links to \`src/s'"
|
616
|
363 (cd src/s
|
11666
|
364 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
|
616
|
365
|
14102
|
366 echo "Making links to \`lib-src'"
|
616
|
367 (cd lib-src
|
11226
|
368 ln [a-zA-Z]*.[chy] ../${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
|
369 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
|
9805
|
370 ln emacs.csh rcs2log rcs-checkin makefile.nt ../${tempdir}/lib-src
|
16806
|
371 ## If we ended up with a symlink, or if we did not get anything
|
|
372 ## due to a cross-device symlink, copy the file.
|
|
373 for file in [a-zA-Z]*.[chy]; do
|
|
374 if test -f ../${tempdir}/lib-src/$file; then
|
|
375 # test -f appears to succeed for a symlink
|
|
376 if test -L ../${tempdir}/lib-src/$file; then
|
|
377 rm ../${tempdir}/lib-src/$file
|
|
378 cp $file ../${tempdir}/lib-src
|
|
379 chmod a-w ../${tempdir}/lib-src/$file
|
|
380 fi
|
|
381 else
|
|
382 rm ../${tempdir}/lib-src/$file
|
|
383 cp $file ../${tempdir}/lib-src
|
|
384 chmod a-w ../${tempdir}/lib-src/$file
|
|
385 fi
|
|
386 done
|
992
|
387 cd ../${tempdir}/lib-src
|
16806
|
388 rm -f 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
|
389 rm -f =* TAGS)
|
616
|
390
|
14102
|
391 echo "Making links to \`nt'"
|
9805
|
392 (cd nt
|
15158
|
393 ln emacs.ico emacs.rc config.nt [a-z]*.in [a-z]*.c ../${tempdir}/nt
|
12308
|
394 ln [a-z]*.bat [a-z]*.h makefile.def makefile.nt ../${tempdir}/nt
|
13544
34c4ee840e09
(nt): Rename install, readme, and todo to INSTALL, README, and TODO.
Geoff Voelker <voelker@cs.washington.edu>
diff
changeset
|
395 ln TODO ChangeLog INSTALL README ../${tempdir}/nt)
|
9805
|
396
|
14102
|
397 echo "Making links to \`nt/inc'"
|
9805
|
398 (cd nt/inc
|
11666
|
399 ln [a-z]*.h ../../${tempdir}/nt/inc)
|
9805
|
400
|
14102
|
401 echo "Making links to \`nt/inc/sys'"
|
9805
|
402 (cd nt/inc/sys
|
11666
|
403 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
|
9805
|
404
|
15158
|
405 echo "Making links to \`nt/inc/arpa'"
|
|
406 (cd nt/inc/arpa
|
|
407 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
|
|
408
|
|
409 echo "Making links to \`nt/inc/netinet'"
|
|
410 (cd nt/inc/netinet
|
|
411 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
|
|
412
|
14102
|
413 echo "Making links to \`msdos'"
|
5471
|
414 (cd msdos
|
|
415 ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos
|
15823
|
416 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
|
5471
|
417 cd ../${tempdir}/msdos
|
|
418 rm -f =*)
|
|
419
|
14102
|
420 echo "Making links to \`oldXMenu'"
|
616
|
421 (cd oldXMenu
|
2832
47d8f937a4bc
* make-dist: Include any *.in files in oldXMenu in the distribution.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
422 ln *.c *.h *.in ../${tempdir}/oldXMenu
|
2833
|
423 ln README Imakefile ChangeLog ../${tempdir}/oldXMenu
|
2487
|
424 ln compile.com descrip.mms ../${tempdir}/oldXMenu)
|
616
|
425
|
14102
|
426 echo "Making links to \`lwlib'"
|
5629
|
427 (cd lwlib
|
|
428 ln *.c *.h *.in ../${tempdir}/lwlib
|
14258
|
429 ln README Imakefile ChangeLog ../${tempdir}/lwlib
|
|
430 cd ../${tempdir}/lwlib
|
|
431 rm -f lwlib-Xol*)
|
5629
|
432
|
14102
|
433 echo "Making links to \`etc'"
|
2487
|
434 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
|
|
435 ### tex litter.
|
616
|
436 (cd etc
|
18691
|
437 files=`ls -d * | grep -v 'RCS' | grep -v 'Old' | grep -v '^e$'`
|
|
438 ln $files ../${tempdir}/etc
|
18515
|
439 ## If we ended up with a symlink, or if we did not get anything
|
|
440 ## due to a cross-device symlink, copy the file.
|
18691
|
441 for file in $files; do
|
18515
|
442 if test -f ../${tempdir}/etc/$file; then
|
|
443 # test -f appears to succeed for a symlink
|
|
444 if test -L ../${tempdir}/etc/$file; then
|
|
445 rm ../${tempdir}/etc/$file
|
|
446 cp $file ../${tempdir}/etc
|
|
447 chmod a-w ../${tempdir}/etc/$file
|
|
448 fi
|
|
449 else
|
|
450 rm ../${tempdir}/etc/$file
|
|
451 cp $file ../${tempdir}/etc
|
|
452 chmod a-w ../${tempdir}/etc/$file
|
|
453 fi
|
|
454 done
|
616
|
455 cd ../${tempdir}/etc
|
13634
|
456 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
|
2487
|
457 rm -f TAGS)
|
616
|
458
|
14102
|
459 echo "Making links to \`etc/e'"
|
10065
|
460 (cd etc/e
|
11226
|
461 ln `ls -d * | grep -v 'RCS'` ../../${tempdir}/etc/e
|
13383
|
462 cd ../../${tempdir}/etc/e
|
11226
|
463 rm -f *~ \#*\# *,v =* core)
|
10065
|
464
|
14102
|
465 echo "Making links to \`cpp'"
|
1792
|
466 (cd cpp
|
|
467 ln cccp.c cexp.y Makefile README ../${tempdir}/cpp)
|
|
468
|
14102
|
469 echo "Making links to \`info'"
|
2792
|
470 # Don't distribute backups or autosaves.
|
|
471 (cd info
|
|
472 ln [a-zA-Z]* ../${tempdir}/info
|
|
473 cd ../${tempdir}/info
|
|
474 # Avoid an error when expanding the wildcards later.
|
|
475 ln emacs dummy~ ; ln emacs \#dummy\#
|
|
476 rm -f *~ \#*\# core)
|
1792
|
477
|
14102
|
478 echo "Making links to \`man'"
|
1792
|
479 (cd man
|
4970
|
480 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../${tempdir}/man
|
1942
|
481 test -f README && ln README ../${tempdir}/man
|
10065
|
482 test -f Makefile.in && ln Makefile.in ../${tempdir}/man
|
2676
|
483 ln ChangeLog split-man ../${tempdir}/man
|
11226
|
484 cp texinfo.tex ../${tempdir}/man
|
2684
|
485 cd ../${tempdir}/man
|
2676
|
486 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
|
|
487 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
|
616
|
488
|
14102
|
489 echo "Making links to \`vms'"
|
1364
|
490 (cd vms
|
|
491 ln [0-9a-zA-Z]* ../${tempdir}/vms
|
|
492 cd ../${tempdir}/vms
|
|
493 rm -f *~)
|
|
494
|
1700
|
495 ### It would be nice if they could all be symlinks to etc's copy, but
|
|
496 ### you're not supposed to have any symlinks in distribution tar files.
|
14102
|
497 echo "Making sure copying notices are all copies of \`etc/COPYING'"
|
992
|
498 rm -f ${tempdir}/etc/COPYING
|
|
499 cp etc/COPYING ${tempdir}/etc/COPYING
|
11185
|
500 for subdir in lisp src lib-src info msdos; do
|
616
|
501 if [ -f ${tempdir}/${subdir}/COPYING ]; then
|
|
502 rm ${tempdir}/${subdir}/COPYING
|
|
503 fi
|
1790
|
504 cp etc/COPYING ${tempdir}/${subdir}
|
616
|
505 done
|
|
506
|
2986
|
507 #### Make sure that there aren't any hard links between files in the
|
|
508 #### distribution; people with afs can't deal with that. Okay,
|
|
509 #### actually we just re-copy anything with a link count greater
|
11226
|
510 #### than two. (Yes, strictly greater than 2 is correct; since we
|
|
511 #### created these files by linking them in from the original tree,
|
|
512 #### they'll have exactly two links normally.)
|
13406
|
513 ####
|
14018
|
514 #### Commented out since it's not strictly necessary; it should suffice
|
13406
|
515 #### to just break the link on alloca.c.
|
12480
|
516 #echo "Breaking intra-tree links."
|
|
517 #find ${tempdir} ! -type d -links +2 \
|
|
518 # -exec cp -p {} $$ \; -exec rm -f {} \; -exec mv $$ {} \;
|
13406
|
519 rm -f $tempdir/lib-src/alloca.c
|
|
520 cp $tempdir/src/alloca.c $tempdir/lib-src/alloca.c
|
2986
|
521
|
992
|
522 if [ "${newer}" ]; then
|
14102
|
523 echo "Removing files older than $newer"
|
1628
|
524 ## We remove .elc files unconditionally, on the theory that anyone picking
|
|
525 ## up an incremental distribution already has a running Emacs to byte-compile
|
|
526 ## them with.
|
992
|
527 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
|
|
528 fi
|
|
529
|
621
|
530 if [ "${make_tar}" = yes ]; then
|
2254
|
531 if [ "${default_gzip}" = "" ]; then
|
14102
|
532 echo "Looking for gzip"
|
2254
|
533 temppath=`echo $PATH | sed 's/^:/.:/
|
|
534 s/::/:.:/g
|
|
535 s/:$/:./
|
|
536 s/:/ /g'`
|
|
537 default_gzip=`(
|
|
538 for dir in ${temppath}; do
|
|
539 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
|
|
540 done
|
|
541 echo compress
|
|
542 )`
|
|
543 fi
|
2487
|
544 case "${default_gzip}" in
|
|
545 compress* ) gzip_extension=.Z ;;
|
3818
ec5cc4995395
* make-dist: If using gzip, create distribution with '.gz' extension.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
546 * ) gzip_extension=.gz ;;
|
2487
|
547 esac
|
18654
|
548 echo "Creating tar files"
|
2487
|
549 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
|
|
550 | ${default_gzip} \
|
|
551 > ${emacsname}.tar${gzip_extension}
|
18654
|
552 (cd ${tempparent} ; tar cvf - ${emacsname}-leim ) \
|
|
553 | ${default_gzip} \
|
|
554 > ${emacsname}-leim.tar${gzip_extension}
|
621
|
555 fi
|
616
|
556
|
621
|
557 if [ "${clean_up}" = yes ]; then
|
14102
|
558 echo "Cleaning up the staging directory"
|
2487
|
559 rm -rf ${tempparent}
|
5206
|
560 else
|
18654
|
561 (cd ${tempparent}; mv ${emacsname} ${emacsname}-leim ..)
|
5206
|
562 rm -rf ${tempparent}
|
616
|
563 fi
|
994
|
564
|
1628
|
565 ### make-dist ends here
|