diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-09-19 16:18:21 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-09-19 16:18:21 +0000 |
commit | 365949b7bd12d2676cdd6ac6aecf8e230f7ed97e (patch) | |
tree | d1005d13e9195cb60c101175eb774bda824480ed /make-dist | |
parent | 3c0261ed16048227b4f4f16254202284889592f6 (diff) | |
download | emacs-365949b7bd12d2676cdd6ac6aecf8e230f7ed97e.tar.gz |
Include XPM and XBM files in lisp/ and subdirs
in the distribution.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/make-dist b/make-dist index fd8066cdc4a..b1270757de1 100755 --- a/make-dist +++ b/make-dist @@ -317,6 +317,12 @@ echo "Making links to \`lisp' and its subdirectories" 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 @@ echo "Making links to \`lisp' and its subdirectories" 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 |