(emacs-lisp-mode-syntax-table): Give formfeed whitespace syntax.
[bpt/emacs.git] / make-dist
CommitLineData
f7dbcf3c 1#!/bin/sh
76fb0a58
JB
2
3#### make-dist: create an Emacs distribution tar file from the current
1d650ff1 4#### source tree. This basically creates a duplicate directory
76fb0a58
JB
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.
f7dbcf3c 8
98d4c1d0 9# Copyright (C) 1995, 1997 Free Software Foundation, Inc.
4c9c1174
KH
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
1fb87c77
KH
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.
4c9c1174 27
f7dbcf3c
JB
28progname="$0"
29
76fb0a58
JB
30### Exit if a command fails.
31### set -e
f7dbcf3c 32
76fb0a58
JB
33### Print out each line we read, for debugging's sake.
34### set -v
f7dbcf3c 35
67ffab69
RS
36## Don't protect any files.
37umask 0
38
c75cfabd 39update=yes
f22edcea
RS
40clean_up=no
41make_tar=no
1260d6ba 42newer=""
f7dbcf3c
JB
43
44while [ $# -gt 0 ]; do
45 case "$1" in
f22edcea
RS
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
4746118a 50 ;;
f22edcea
RS
51 ## This option tells make-dist to make a tar file.
52 "--tar" )
53 make_tar=yes
f7dbcf3c 54 ;;
c75cfabd
RS
55 ## This option tells make-dist not to recompile or do analogous things.
56 "--no-update" )
57 update=no
58 ;;
76fb0a58 59 ## This option tells make-dist to make the distribution normally, then
7b9cd64c
ER
60 ## remove all files older than the given timestamp file. This is useful
61 ## for creating incremental or patch distributions.
1260d6ba 62 "--newer")
ef15f270
JB
63 newer="$2"
64 new_extension=".new"
1260d6ba
ER
65 shift
66 ;;
922ac4c5
JB
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 ;;
f7dbcf3c
JB
72 * )
73 echo "${progname}: Unrecognized argument: $1" >&2
74 exit 1
75 ;;
76 esac
77 shift
78done
79
76fb0a58 80### Make sure we're running in the right place.
f7dbcf3c 81if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
1260d6ba
ER
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
0d122844 84 echo "distribution tree. cd to that directory and try again." >&2
f7dbcf3c
JB
85 exit 1
86fi
87
c75cfabd
RS
88### Find where to run Emacs.
89if [ $update = yes ];
90then
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
101fi
102
76fb0a58 103### Find out which version of Emacs this is.
0e0186f1 104shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
47d105b0 105 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
0e0186f1
RS
106version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
107 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
f7dbcf3c 108if [ ! "${version}" ]; then
21764d60 109 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
f7dbcf3c
JB
110 exit 1
111fi
112
21764d60 113echo Version numbers are $version and $shortversion
47d105b0 114
c75cfabd
RS
115if [ $update = yes ];
116then
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
f753e9aa
JB
123fi
124
bb160193
RS
125### Make sure we don't already have a directory emacs-${version}.
126
127emacsname="emacs-${version}${new_extension}"
128
129if [ -d ${emacsname} ]
130then
131 echo Directory "${emacsname}" already exists >&2
132 exit 1
133fi
134
76fb0a58 135### Make sure the subdirectory is available.
1260d6ba 136tempparent="make-dist.tmp.$$"
f7dbcf3c 137if [ -d ${tempparent} ]; then
1260d6ba
ER
138 echo "${progname}: staging directory \`${tempparent}' already exists.
139Perhaps a previous invocation of \`${progname}' failed to clean up after
140itself. Check that directories whose names are of the form
141\`make-dist.tmp.NNNNN' don't contain any important information, remove
142them, and try again." >&2
f7dbcf3c
JB
143 exit 1
144fi
145
9f7602fd 146### Check for .elc files with no corresponding .el file.
7a6ee7ae
RS
147ls -1 lisp/[a-z]*.el lisp/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
148ls -1 lisp/[a-z]*.elc lisp/[a-z]*/[a-z]*.elc > /tmp/elc
254e10d8
JB
149bogosities="`comm -13 /tmp/el /tmp/elc`"
150if [ "${bogosities}" != "" ]; then
151 echo "The following .elc files have no corresponding .el files:"
152 echo "${bogosities}"
153fi
8f731fcc 154rm -f /tmp/el /tmp/elc
9f7602fd 155
8615e792 156### Check for .el files with no corresponding .elc file.
7a6ee7ae
RS
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
8615e792 159losers="`comm -23 /tmp/el /tmp/elc`"
f298f0d2 160bogosities=
8615e792 161for file in $losers; do
b32ce17b
RS
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
8615e792
RS
173 fi
174done
91741841 175if [ x"${bogosities}" != x"" ]; then
f298f0d2 176 echo "The following .el files have no corresponding .elc files:"
8615e792
RS
177 echo "${bogosities}"
178fi
179rm -f /tmp/el /tmp/elc
180
f5674423 181### Check for .el files that would overflow the 14-char limit if compiled.
544174d9 182long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
f5674423
KH
183if [ "$long" != "" ]; then
184 echo "The following .el file names are too long:"
185 echo "$long"
186fi
187
b4e84d5d
JB
188### Make sure configure is newer than configure.in.
189if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
21764d60
KH
190 echo "\`./configure.in' is newer than \`./configure'" >&2
191 echo "Running autoconf" >&2
28335560 192 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
b4e84d5d
JB
193fi
194
c75cfabd
RS
195if [ $update = yes ];
196then
197 echo "Updating Info files"
980ab937 198
c75cfabd 199 (cd man; make info)
980ab937 200
c75cfabd 201 echo "Recompiling Lisp files"
21764d60 202
c75cfabd 203 $EMACS -batch -f batch-byte-recompile-directory lisp
21764d60 204
e888d449 205 echo "Updating finder, custom and autoload data"
4f23c692 206
7cf45b04
RS
207 (cd lisp; make updates EMACS=$EMACS)
208
209 echo "Updating leim-list.el"
210
211 (cd leim; make leim-list.el EMACS=$EMACS)
c75cfabd 212fi
0588a761 213
f07eebe0
KH
214echo "Making lisp/MANIFEST"
215
ce200cf3 216(cd lisp; head -1 [!=]*.el | grep '^;' | sed -e 's/;;; //' > MANIFEST)
f07eebe0 217
1260d6ba 218echo "Creating staging directory: \`${tempparent}'"
bb160193 219
f7dbcf3c 220mkdir ${tempparent}
f7dbcf3c
JB
221tempdir="${tempparent}/${emacsname}"
222
76fb0a58
JB
223### This trap ensures that the staging directory will be cleaned up even
224### when the script is interrupted in mid-career.
00c00348 225if [ "${clean_up}" = yes ]; then
21764d60 226 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
00c00348
ER
227fi
228
1260d6ba 229echo "Creating top directory: \`${tempdir}'"
f7dbcf3c
JB
230mkdir ${tempdir}
231
76fb0a58
JB
232### We copy in the top-level files before creating the subdirectories in
233### hopes that this will make the top-level files appear first in the
234### tar file; this means that people can start reading the INSTALL and
235### README while the rest of the tar file is still unpacking. Whoopee.
21764d60 236echo "Making links to top-level files"
525336b7 237ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README BUGS move-if-change ${tempdir}
ac4eff2d 238ln ChangeLog Makefile.in configure configure.in ${tempdir}
6f8b09f3 239ln config.bat make-dist update-subdirs vpath.sed ${tempdir}
bb160193 240### Copy these files; they're cross-filesystem symlinks.
a4888c88 241cp mkinstalldirs ${tempdir}
76fb0a58 242cp config.sub ${tempdir}
2ed56345 243cp config.guess ${tempdir}
bb160193 244cp install.sh ${tempdir}
f7dbcf3c 245
21764d60 246echo "Updating version number in README"
f753e9aa
JB
247(cd ${tempdir}
248 awk \
249 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
250 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
251 version=${version} README > tmp.README
252 mv tmp.README README)
253
254
21764d60 255echo "Creating subdirectories"
91741841 256for subdir in lisp site-lisp leim real-leim real-leim/CXTERM-DIC \
5f8d02be 257 real-leim/SKK-DIC real-leim/skk real-leim/quail \
c660c0a7 258 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
e827bc37 259 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet \
8e583b5d 260 etc etc/e lock cpp info man msdos vms; do
f7dbcf3c
JB
261 mkdir ${tempdir}/${subdir}
262done
263
91741841
RS
264echo "Initializing \`leim' subdirectory"
265cp leim-Makefile.in ${tempdir}/leim/Makefile.in
266
67ffab69 267echo "Making links to \`lisp' and its subdirectories"
7b9cd64c 268### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
f7dbcf3c
JB
269(cd lisp
270 ln [a-zA-Z]*.el ../${tempdir}/lisp
271 ln [a-zA-Z]*.elc ../${tempdir}/lisp
8d2197ac 272 ln [a-zA-Z]*.dat ../${tempdir}/lisp
76fb0a58
JB
273 ## simula.el doesn't keep abbreviations in simula.defns any more.
274 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
3f7b30bf 275 ln ChangeLog Makefile makefile.nt ChangeLog.? README ../${tempdir}/lisp
67ffab69
RS
276 (cd ../${tempdir}/lisp
277 rm -f TAGS =*
278 rm -f site-init site-init.el site-init.elc
279 rm -f site-load site-load.el site-load.elc
280 rm -f site-start site-start.el site-start.elc
281 rm -f default default.el default.elc
282 )
283
284 ## Find all subdirs of lisp dir
285 for file in `find . -type d -print`; do
286 case $file in
762d80d1 287 . | .. | */Old | */RCS | */=*)
67ffab69
RS
288 ;;
289 *)
290 if [ -d $file ]; then
291 subdirs="$file $subdirs"
292 fi
293 ;;
294 esac
295 done
296
297 for file in $subdirs; do
298 echo " lisp/$file"
299 mkdir ../${tempdir}/lisp/$file
300 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file
301 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file
302 if [ -f $file/README ]; then
303 ln $file/README ../${tempdir}/lisp/$file
304 fi
67ffab69 305 done )
a78c106d 306
91741841
RS
307echo "Making links to \`leim' and its subdirectories for the LEIM distribution"
308### Don't distribute TAGS, or =*.el files.
309(cd leim
310 ln Makefile.in makefile.nt ../${tempdir}/real-leim
9089d8d7 311 ln ChangeLog README ../${tempdir}/real-leim
91741841
RS
312
313 ln CXTERM-DIC/*.tit ../${tempdir}/real-leim/CXTERM-DIC
5f8d02be 314 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/real-leim/SKK-DIC
91741841
RS
315 ln skk/*.el skk/*.elc ../${tempdir}/real-leim/skk
316 ln quail/*.el quail/*.elc ../${tempdir}/real-leim/quail
317
318 cd ../${tempdir}/real-leim
319 rm -f TAGS =* */=*)
320
321### Move the real-leim directory outside of Emacs proper.
65fda17c
RS
322(cd ${tempparent}
323 mkdir ${emacsname}-leim
324 mkdir ${emacsname}-leim/${emacsname}
325 mv ${emacsname}/real-leim ${emacsname}-leim/${emacsname}/leim)
91741841 326
21764d60 327echo "Making links to \`src'"
76fb0a58 328### Don't distribute =*.[ch] files, or the configured versions of
c3f1e1a9 329### config.in, paths.in, or Makefile.in, or TAGS.
f7dbcf3c 330(cd src
c75cfabd 331 echo " (It is ok if ln fails in some cases.)"
f7dbcf3c
JB
332 ln [a-zA-Z]*.c ../${tempdir}/src
333 ln [a-zA-Z]*.h ../${tempdir}/src
334 ln [a-zA-Z]*.s ../${tempdir}/src
c75cfabd
RS
335 ln [a-zA-Z]*.in ../${tempdir}/src
336 ln [a-zA-Z]*.opt ../${tempdir}/src
337 ## If we ended up with a symlink, or if we did not get anything
338 ## due to a cross-device symlink, copy the file.
339 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do
340 if test -f ../${tempdir}/src/$file; then
341 # test -f appears to succeed for a symlink
342 if test -L ../${tempdir}/src/$file; then
343 rm ../${tempdir}/src/$file
344 cp $file ../${tempdir}/src
345 chmod a-w ../${tempdir}/src/$file
346 fi
347 else
348 rm ../${tempdir}/src/$file
349 cp $file ../${tempdir}/src
350 chmod a-w ../${tempdir}/src/$file
351 fi
352 done
353 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
354 ln makefile.nt vms-pp.trans ../${tempdir}/src
990ee059 355 ln .gdbinit .dbxinit ../${tempdir}/src
f7dbcf3c 356 cd ../${tempdir}/src
a6903f09 357 rm -f config.h paths.h Makefile Makefile.c
7b9cd64c 358 rm -f =* TAGS)
f7dbcf3c 359
21764d60 360echo "Making links to \`src/bitmaps'"
690eca32
JB
361(cd src/bitmaps
362 ln README *.xbm ../../${tempdir}/src/bitmaps)
363
21764d60 364echo "Making links to \`src/m'"
f7dbcf3c 365(cd src/m
facbb78e
RS
366 # We call files for miscellaneous input (to linker etc) .inp.
367 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
f7dbcf3c 368
21764d60 369echo "Making links to \`src/s'"
f7dbcf3c 370(cd src/s
77427171 371 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
f7dbcf3c 372
21764d60 373echo "Making links to \`lib-src'"
f7dbcf3c 374(cd lib-src
375f1bd7 375 ln [a-zA-Z]*.[chy] ../${tempdir}/lib-src
c3f1e1a9 376 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
391b3748 377 ln emacs.csh rcs2log rcs-checkin makefile.nt ../${tempdir}/lib-src
c75cfabd
RS
378 ## If we ended up with a symlink, or if we did not get anything
379 ## due to a cross-device symlink, copy the file.
380 for file in [a-zA-Z]*.[chy]; do
381 if test -f ../${tempdir}/lib-src/$file; then
382 # test -f appears to succeed for a symlink
383 if test -L ../${tempdir}/lib-src/$file; then
384 rm ../${tempdir}/lib-src/$file
385 cp $file ../${tempdir}/lib-src
386 chmod a-w ../${tempdir}/lib-src/$file
387 fi
388 else
389 rm ../${tempdir}/lib-src/$file
390 cp $file ../${tempdir}/lib-src
391 chmod a-w ../${tempdir}/lib-src/$file
392 fi
393 done
1260d6ba 394 cd ../${tempdir}/lib-src
c75cfabd 395 rm -f Makefile.c
7b9cd64c 396 rm -f =* TAGS)
f7dbcf3c 397
21764d60 398echo "Making links to \`nt'"
391b3748 399(cd nt
e827bc37 400 ln emacs.ico emacs.rc config.nt [a-z]*.in [a-z]*.c ../${tempdir}/nt
b47cc08a 401 ln [a-z]*.bat [a-z]*.h makefile.def makefile.nt ../${tempdir}/nt
3bb3cfe7 402 ln TODO ChangeLog INSTALL README ../${tempdir}/nt)
391b3748 403
21764d60 404echo "Making links to \`nt/inc'"
391b3748 405(cd nt/inc
77427171 406 ln [a-z]*.h ../../${tempdir}/nt/inc)
391b3748 407
21764d60 408echo "Making links to \`nt/inc/sys'"
391b3748 409(cd nt/inc/sys
77427171 410 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
391b3748 411
e827bc37
RS
412echo "Making links to \`nt/inc/arpa'"
413(cd nt/inc/arpa
414 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
415
416echo "Making links to \`nt/inc/netinet'"
417(cd nt/inc/netinet
418 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
419
21764d60 420echo "Making links to \`msdos'"
52d7b2e5
RS
421(cd msdos
422 ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos
7fd85d56 423 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
52d7b2e5
RS
424 cd ../${tempdir}/msdos
425 rm -f =*)
426
21764d60 427echo "Making links to \`oldXMenu'"
f7dbcf3c 428(cd oldXMenu
8bdbf9ed 429 ln *.c *.h *.in ../${tempdir}/oldXMenu
df1ec566 430 ln README Imakefile ChangeLog ../${tempdir}/oldXMenu
f395c83a 431 ln compile.com descrip.mms ../${tempdir}/oldXMenu)
f7dbcf3c 432
21764d60 433echo "Making links to \`lwlib'"
c660c0a7
RS
434(cd lwlib
435 ln *.c *.h *.in ../${tempdir}/lwlib
72e7e784
KH
436 ln README Imakefile ChangeLog ../${tempdir}/lwlib
437 cd ../${tempdir}/lwlib
438 rm -f lwlib-Xol*)
c660c0a7 439
21764d60 440echo "Making links to \`etc'"
f395c83a
JB
441### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
442### tex litter.
f7dbcf3c 443(cd etc
7a6ee7ae
RS
444 files=`ls -d * | grep -v 'RCS' | grep -v 'Old' | grep -v '^e$'`
445 ln $files ../${tempdir}/etc
98d4c1d0
RS
446 ## If we ended up with a symlink, or if we did not get anything
447 ## due to a cross-device symlink, copy the file.
7a6ee7ae 448 for file in $files; do
98d4c1d0
RS
449 if test -f ../${tempdir}/etc/$file; then
450 # test -f appears to succeed for a symlink
451 if test -L ../${tempdir}/etc/$file; then
452 rm ../${tempdir}/etc/$file
453 cp $file ../${tempdir}/etc
454 chmod a-w ../${tempdir}/etc/$file
455 fi
456 else
457 rm ../${tempdir}/etc/$file
458 cp $file ../${tempdir}/etc
459 chmod a-w ../${tempdir}/etc/$file
460 fi
461 done
f7dbcf3c 462 cd ../${tempdir}/etc
23a58692 463 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
f395c83a 464 rm -f TAGS)
f7dbcf3c 465
21764d60 466echo "Making links to \`etc/e'"
f08ad882 467(cd etc/e
375f1bd7 468 ln `ls -d * | grep -v 'RCS'` ../../${tempdir}/etc/e
a6903f09 469 cd ../../${tempdir}/etc/e
375f1bd7 470 rm -f *~ \#*\# *,v =* core)
f08ad882 471
21764d60 472echo "Making links to \`cpp'"
fda4e8f6
JB
473(cd cpp
474 ln cccp.c cexp.y Makefile README ../${tempdir}/cpp)
475
21764d60 476echo "Making links to \`info'"
66afa119
RS
477# Don't distribute backups or autosaves.
478(cd info
479 ln [a-zA-Z]* ../${tempdir}/info
480 cd ../${tempdir}/info
481 # Avoid an error when expanding the wildcards later.
482 ln emacs dummy~ ; ln emacs \#dummy\#
483 rm -f *~ \#*\# core)
fda4e8f6 484
21764d60 485echo "Making links to \`man'"
fda4e8f6 486(cd man
298c8970 487 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../${tempdir}/man
5e808bc0 488 test -f README && ln README ../${tempdir}/man
f08ad882 489 test -f Makefile.in && ln Makefile.in ../${tempdir}/man
56c31c87 490 ln ChangeLog split-man ../${tempdir}/man
375f1bd7 491 cp texinfo.tex ../${tempdir}/man
4f8cc93a 492 cd ../${tempdir}/man
56c31c87
RS
493 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
494 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
f7dbcf3c 495
21764d60 496echo "Making links to \`vms'"
40eef465
JB
497(cd vms
498 ln [0-9a-zA-Z]* ../${tempdir}/vms
499 cd ../${tempdir}/vms
500 rm -f *~)
501
c87b230f
JB
502### It would be nice if they could all be symlinks to etc's copy, but
503### you're not supposed to have any symlinks in distribution tar files.
21764d60 504echo "Making sure copying notices are all copies of \`etc/COPYING'"
1260d6ba
ER
505rm -f ${tempdir}/etc/COPYING
506cp etc/COPYING ${tempdir}/etc/COPYING
8e583b5d 507for subdir in lisp src lib-src info msdos; do
f7dbcf3c
JB
508 if [ -f ${tempdir}/${subdir}/COPYING ]; then
509 rm ${tempdir}/${subdir}/COPYING
510 fi
96858c42 511 cp etc/COPYING ${tempdir}/${subdir}
f7dbcf3c
JB
512done
513
5b8def65
JB
514#### Make sure that there aren't any hard links between files in the
515#### distribution; people with afs can't deal with that. Okay,
516#### actually we just re-copy anything with a link count greater
375f1bd7
KH
517#### than two. (Yes, strictly greater than 2 is correct; since we
518#### created these files by linking them in from the original tree,
519#### they'll have exactly two links normally.)
bb7e0f81 520####
908ff139 521#### Commented out since it's not strictly necessary; it should suffice
bb7e0f81 522#### to just break the link on alloca.c.
9b23a6c7
RS
523#echo "Breaking intra-tree links."
524#find ${tempdir} ! -type d -links +2 \
525# -exec cp -p {} $$ \; -exec rm -f {} \; -exec mv $$ {} \;
bb7e0f81
KH
526rm -f $tempdir/lib-src/alloca.c
527cp $tempdir/src/alloca.c $tempdir/lib-src/alloca.c
5b8def65 528
1260d6ba 529if [ "${newer}" ]; then
21764d60 530 echo "Removing files older than $newer"
76fb0a58
JB
531 ## We remove .elc files unconditionally, on the theory that anyone picking
532 ## up an incremental distribution already has a running Emacs to byte-compile
533 ## them with.
1260d6ba
ER
534 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
535fi
536
4746118a 537if [ "${make_tar}" = yes ]; then
922ac4c5 538 if [ "${default_gzip}" = "" ]; then
21764d60 539 echo "Looking for gzip"
922ac4c5
JB
540 temppath=`echo $PATH | sed 's/^:/.:/
541 s/::/:.:/g
542 s/:$/:./
543 s/:/ /g'`
544 default_gzip=`(
545 for dir in ${temppath}; do
546 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
547 done
548 echo compress
549 )`
550 fi
f395c83a
JB
551 case "${default_gzip}" in
552 compress* ) gzip_extension=.Z ;;
0dc610dd 553 * ) gzip_extension=.gz ;;
f395c83a 554 esac
91741841 555 echo "Creating tar files"
f395c83a
JB
556 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
557 | ${default_gzip} \
558 > ${emacsname}.tar${gzip_extension}
65fda17c 559 (cd ${tempparent}/${emacsname}-leim ; tar cvf - ${emacsname} ) \
91741841
RS
560 | ${default_gzip} \
561 > ${emacsname}-leim.tar${gzip_extension}
4746118a 562fi
f7dbcf3c 563
4746118a 564if [ "${clean_up}" = yes ]; then
21764d60 565 echo "Cleaning up the staging directory"
f395c83a 566 rm -rf ${tempparent}
bb160193 567else
91741841 568 (cd ${tempparent}; mv ${emacsname} ${emacsname}-leim ..)
bb160193 569 rm -rf ${tempparent}
f7dbcf3c 570fi
00c00348 571
76fb0a58 572### make-dist ends here