From: Richard M. Stallman Date: Fri, 27 Jun 1997 09:37:27 +0000 (+0000) Subject: Fix up the text for .el files that are not compiled. X-Git-Tag: emacs-20.1~1479 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f298f0d2bd0bac96fdc5230a299476fa2d7b7bf0;p=emacs.git Fix up the text for .el files that are not compiled. --- diff --git a/make-dist b/make-dist index 67aaffe9d4d..ebcd4baff7b 100755 --- a/make-dist +++ b/make-dist @@ -157,13 +157,14 @@ rm -f /tmp/el /tmp/elc (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