aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-09-19 16:18:21 +0000
committerGerd Moellmann2000-09-19 16:18:21 +0000
commit365949b7bd12d2676cdd6ac6aecf8e230f7ed97e (patch)
treed1005d13e9195cb60c101175eb774bda824480ed
parent3c0261ed16048227b4f4f16254202284889592f6 (diff)
downloademacs-365949b7bd12d2676cdd6ac6aecf8e230f7ed97e.tar.gz
emacs-365949b7bd12d2676cdd6ac6aecf8e230f7ed97e.zip
Include XPM and XBM files in lisp/ and subdirs
in the distribution.
-rwxr-xr-xmake-dist11
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"
317 ln [a-zA-Z]*.el ../${tempdir}/lisp 317 ln [a-zA-Z]*.el ../${tempdir}/lisp
318 ln [a-zA-Z]*.elc ../${tempdir}/lisp 318 ln [a-zA-Z]*.elc ../${tempdir}/lisp
319 ln [a-zA-Z]*.dat ../${tempdir}/lisp 319 ln [a-zA-Z]*.dat ../${tempdir}/lisp
320 for img in [a-zA-Z]*.xpm [a-zA-Z]*.xbm; do
321 # If there are no images, the shell won't expand the pattern.
322 if [ -f $img ]; then
323 ln $img ../${tempdir}/lisp
324 fi
325 done
320 ## simula.el doesn't keep abbreviations in simula.defns any more. 326 ## simula.el doesn't keep abbreviations in simula.defns any more.
321 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp 327 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
322 ln ChangeLog Makefile.in makefile.nt ChangeLog.? ../${tempdir}/lisp 328 ln ChangeLog Makefile.in makefile.nt ChangeLog.? ../${tempdir}/lisp
@@ -347,6 +353,11 @@ echo "Making links to \`lisp' and its subdirectories"
347 mkdir ../${tempdir}/lisp/$file 353 mkdir ../${tempdir}/lisp/$file
348 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file 354 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file
349 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file 355 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file
356 for img in $file/[a-zA-Z]*.xpm $file/[a-zA-Z]*.xbm; do
357 if [ -f $img ]; then
358 ln $img ../${tempdir}/lisp/$file
359 fi
360 done
350 if [ -f $file/README ]; then 361 if [ -f $file/README ]; then
351 ln $file/README ../${tempdir}/lisp/$file 362 ln $file/README ../${tempdir}/lisp/$file
352 fi 363 fi