1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

(update-elcfiles): Report left over elc files.

This commit is contained in:
Stefan Monnier 2009-08-27 18:35:20 +00:00
parent 877610de12
commit 3a68ab0653
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (update-elcfiles): Report left over elc files.
* mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
expand-file-name and with-current-buffer.
(mail-get-names, mail-directory): Use with-current-buffer.

View File

@ -183,6 +183,12 @@ update-elclist:
chmod +w $(lisp)/Makefile.in; \
mv -f temp-elcfiles $(lisp)/Makefile.in; \
fi
-(COLLATE=C ls $(lisp)/*.elc $(lisp)/*/*.elc | sed 's/elc$$/el/'; \
COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el; \
COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el) | \
sort | uniq -u | while read extra; do \
echo "Found left over byte-compiled file: $${extra}c !!" ;\
done
## Explicitly list the .elc files, for the sake of parallel builds.
## http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-05/msg00016.html