Mercurial > emacs
changeset 18467:6f263a83b071
Fix up the text for .el files that are not compiled.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 27 Jun 1997 09:37:27 +0000 |
parents | 535a18a6b623 |
children | 369c696228a6 |
files | make-dist |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/make-dist Fri Jun 27 09:04:14 1997 +0000 +++ b/make-dist Fri Jun 27 09:37:27 1997 +0000 @@ -157,13 +157,14 @@ (cd lisp; ls -1 [a-z]*.el) > /tmp/el (cd lisp; ls -1 [a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc losers="`comm -23 /tmp/el /tmp/elc`" +bogosities= for file in $losers; do if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then bogosities="$file $bogosities" fi done if [ "${bogosities}" != "" ]; then - echo "The following .elc files have no corresponding .el files:" + echo "The following .el files have no corresponding .elc files:" echo "${bogosities}" fi rm -f /tmp/el /tmp/elc