summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-03-27 04:56:51 +0000
committerRichard M. Stallman <rms@gnu.org>1998-03-27 04:56:51 +0000
commit2b7700da161506975ca05a5daec444064b7a98c4 (patch)
treec3e4810121debd64376cc904ffb413a875a189ee /make-dist
parent241c6f8e077ad8847d3144111a47395f301091c4 (diff)
downloademacs-2b7700da161506975ca05a5daec444064b7a98c4.tar.gz
Fix shell syntax in check for missing .el or .elc files.
Diffstat (limited to 'make-dist')
-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
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