Skip to content

Commit

Permalink
Fix up the text for .el files that are not compiled.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard M. Stallman committed Jun 27, 1997
1 parent cef5e39 commit 54ee253
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make-dist
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 54ee253

Please sign in to comment.