]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix up the text for .el files that are not compiled.
authorRichard M. Stallman <rms@gnu.org>
Fri, 27 Jun 1997 09:37:27 +0000 (09:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 27 Jun 1997 09:37:27 +0000 (09:37 +0000)
make-dist

index 67aaffe9d4db7c79d6046ff5920456c938b4d435..ebcd4baff7bb15a68583b586612e3ca44821c7fd 100755 (executable)
--- 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