# HG changeset patch # User Gerd Moellmann # Date 969380301 0 # Node ID 422e0ad3418ff41a4d0f8aa8f277d706f24fb565 # Parent 37bf820388a2ea6026814c14a436f2659c8681f1 Include XPM and XBM files in lisp/ and subdirs in the distribution. diff -r 37bf820388a2 -r 422e0ad3418f make-dist --- a/make-dist Tue Sep 19 16:02:51 2000 +0000 +++ b/make-dist Tue Sep 19 16:18:21 2000 +0000 @@ -317,6 +317,12 @@ ln [a-zA-Z]*.el ../${tempdir}/lisp ln [a-zA-Z]*.elc ../${tempdir}/lisp ln [a-zA-Z]*.dat ../${tempdir}/lisp + for img in [a-zA-Z]*.xpm [a-zA-Z]*.xbm; do + # If there are no images, the shell won't expand the pattern. + if [ -f $img ]; then + ln $img ../${tempdir}/lisp + fi + done ## simula.el doesn't keep abbreviations in simula.defns any more. ## ln [a-zA-Z]*.defns ../${tempdir}/lisp ln ChangeLog Makefile.in makefile.nt ChangeLog.? ../${tempdir}/lisp @@ -347,6 +353,11 @@ mkdir ../${tempdir}/lisp/$file ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file + for img in $file/[a-zA-Z]*.xpm $file/[a-zA-Z]*.xbm; do + if [ -f $img ]; then + ln $img ../${tempdir}/lisp/$file + fi + done if [ -f $file/README ]; then ln $file/README ../${tempdir}/lisp/$file fi