diff options
| author | Richard M. Stallman | 1998-03-27 04:56:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-27 04:56:51 +0000 |
| commit | 3985f85d5d2aa56c3a941d5c279bf46482c78cc0 (patch) | |
| tree | ebcc63774e7d34b1823f0b58c746a7cfc706e4bf | |
| parent | c25aec78d178222f28f21e35c63b7316eed780ea (diff) | |
| download | emacs-3985f85d5d2aa56c3a941d5c279bf46482c78cc0.tar.gz emacs-3985f85d5d2aa56c3a941d5c279bf46482c78cc0.zip | |
Fix shell syntax in check for missing .el or .elc files.
| -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 |