aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-03-27 04:56:51 +0000
committerRichard M. Stallman1998-03-27 04:56:51 +0000
commit3985f85d5d2aa56c3a941d5c279bf46482c78cc0 (patch)
treeebcc63774e7d34b1823f0b58c746a7cfc706e4bf
parentc25aec78d178222f28f21e35c63b7316eed780ea (diff)
downloademacs-3985f85d5d2aa56c3a941d5c279bf46482c78cc0.tar.gz
emacs-3985f85d5d2aa56c3a941d5c279bf46482c78cc0.zip
Fix shell syntax in check for missing .el or .elc files.
-rwxr-xr-xmake-dist8
1 files changed, 4 insertions, 4 deletions
diff --git a/make-dist b/make-dist
index afed3f94fe9..97eaacd6318 100755
--- a/make-dist
+++ b/make-dist
@@ -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