mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 12:20:39 -08:00
Fix up the text for .el files that are not compiled.
This commit is contained in:
parent
9695aac625
commit
f298f0d2bd
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue