diff options
| -rwxr-xr-x | make-dist | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -164,10 +164,10 @@ then | |||
| 164 | rm -f /tmp/el /tmp/elc | 164 | rm -f /tmp/el /tmp/elc |
| 165 | 165 | ||
| 166 | ### Check for .el files with no corresponding .elc file. | 166 | ### Check for .el files with no corresponding .elc file. |
| 167 | ((cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) | 167 | (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el ; \ |
| 168 | (cd leim; ls -1 [a-z]*.el [a-z]*/[a-z]*.el)) > /tmp/el | 168 | cd ../leim; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el |
| 169 | ((cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | 169 | (cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc; \ |
| 170 | (cd leim; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc)) | sed 's/\.elc$/.el/' > /tmp/elc | 170 | cd ../leim; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc |
| 171 | losers="`comm -23 /tmp/el /tmp/elc`" | 171 | losers="`comm -23 /tmp/el /tmp/elc`" |
| 172 | bogosities= | 172 | bogosities= |
| 173 | for file in $losers; do | 173 | for file in $losers; do |