mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix shell syntax in check for missing .el or .elc files.
This commit is contained in:
parent
c25aec78d1
commit
3985f85d5d
1 changed files with 4 additions and 4 deletions
|
|
@ -164,10 +164,10 @@ then
|
|||
rm -f /tmp/el /tmp/elc
|
||||
|
||||
### Check for .el files with no corresponding .elc file.
|
||||
((cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el)
|
||||
(cd leim; ls -1 [a-z]*.el [a-z]*/[a-z]*.el)) > /tmp/el
|
||||
((cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc)
|
||||
(cd leim; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc)) | sed 's/\.elc$/.el/' > /tmp/elc
|
||||
(cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el ; \
|
||||
cd ../leim; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el
|
||||
(cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc; \
|
||||
cd ../leim; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc
|
||||
losers="`comm -23 /tmp/el /tmp/elc`"
|
||||
bogosities=
|
||||
for file in $losers; do
|
||||
|
|
|
|||
Loading…
Reference in a new issue