# HG changeset patch # User Richard M. Stallman # Date 867404247 0 # Node ID 6f263a83b0714c714c1418c908a9a81924c39935 # Parent 535a18a6b623664f2b1ab47e760ea47d459122b6 Fix up the text for .el files that are not compiled. diff -r 535a18a6b623 -r 6f263a83b071 make-dist --- 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