aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist21
1 files changed, 12 insertions, 9 deletions
diff --git a/make-dist b/make-dist
index 3381ee770eb..d2563e16a5d 100755
--- a/make-dist
+++ b/make-dist
@@ -218,13 +218,6 @@ then
218 echo "${bogosities}" 218 echo "${bogosities}"
219 fi 219 fi
220 rm -f /tmp/el /tmp/elc 220 rm -f /tmp/el /tmp/elc
221
222 ### Check for .el files that would overflow the 14-char limit if compiled.
223 long=`find lisp leim -name '[a-zA-Z0-9]??????????*.el' -print`
224 if [ "$long" != "" ]; then
225 echo "The following .el file names are too long:"
226 echo "$long"
227 fi
228fi 221fi
229 222
230### Make sure configure is newer than configure.in. 223### Make sure configure is newer than configure.in.
@@ -322,6 +315,7 @@ for subdir in lisp site-lisp lispref lispintro \
322 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \ 315 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
323 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ 316 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
324 etc etc/e etc/images etc/images/gnus etc/images/smilies \ 317 etc etc/e etc/images etc/images/gnus etc/images/smilies \
318 etc/images/mail etc/images/ezimage \
325 etc/tree-widget etc/tree-widget/default etc/tree-widget/folder \ 319 etc/tree-widget etc/tree-widget/default etc/tree-widget/folder \
326 info man m4 msdos vms mac mac/inc mac/inc/sys \ 320 info man m4 msdos vms mac mac/inc mac/inc/sys \
327 mac/src mac/Emacs.app mac/Emacs.app/Contents \ 321 mac/src mac/Emacs.app mac/Emacs.app/Contents \
@@ -599,8 +593,17 @@ echo "Making links to \`etc/e'"
599 cd ../../${tempdir}/etc/e 593 cd ../../${tempdir}/etc/e
600 rm -f *~ \#*\# *,v =* core) 594 rm -f *~ \#*\# *,v =* core)
601 595
602for dir in etc/images/gnus etc/images/smilies \ 596echo "Making links to \`etc/images'"
603 etc/tree-widget/default etc/tree-widget/folder ; do 597(cd etc/images
598 for img in [a-zA-Z]*.xpm [a-zA-Z]*.xbm [a-zA-Z]*.pbm; do
599 if [ -f $img ]; then
600 ln $img ../../${tempdir}/etc/images
601 fi
602 done)
603
604for dir in etc/images/gnus etc/images/smilies etc/images/mail \
605 etc/images/ezimage etc/tree-widget/default \
606 etc/tree-widget/folder ; do
604 echo "Making links to \`${dir}'" 607 echo "Making links to \`${dir}'"
605 (cd ${dir} 608 (cd ${dir}
606 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../${tempdir}/${dir} 609 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../${tempdir}/${dir}