mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-12 16:23:57 +00:00
(check): Update for two new levels of subdirectory in lisp/.
This commit is contained in:
parent
5da62d41f9
commit
7b1b676db8
@ -1,3 +1,7 @@
|
||||
2009-09-29 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* make-dist (check): Update for two new levels of subdirectory in lisp/.
|
||||
|
||||
2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* config.guess, config.sub: Updated from master source.
|
||||
|
@ -197,8 +197,12 @@ if [ $check = yes ];
|
||||
then
|
||||
### Check for .elc files with no corresponding .el file.
|
||||
ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
|
||||
ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
|
||||
lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
|
||||
lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
|
||||
leim/[a-z]*/[a-z]*.elc > /tmp/elc
|
||||
bogosities="`comm -13 /tmp/el /tmp/elc`"
|
||||
if [ "${bogosities}" != "" ]; then
|
||||
@ -209,8 +213,12 @@ then
|
||||
|
||||
### Check for .el files with no corresponding .elc file.
|
||||
ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
leim/[a-z]*/[a-z]*.el > /tmp/el
|
||||
ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
|
||||
lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
|
||||
leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc
|
||||
losers="`comm -23 /tmp/el /tmp/elc`"
|
||||
bogosities=
|
||||
|
Loading…
Reference in New Issue
Block a user