]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix shell syntax in check for missing .el or .elc files.
authorRichard M. Stallman <rms@gnu.org>
Fri, 27 Mar 1998 04:56:51 +0000 (04:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 27 Mar 1998 04:56:51 +0000 (04:56 +0000)
make-dist

index afed3f94fe97d5a5b384c043d2458ba44bcfe019..97eaacd631877b24f1d237a03bfb6bb5bd93eed3 100755 (executable)
--- 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