changeset 21299:9293d783c708

Fix shell syntax in check for missing .el or .elc files.
author Richard M. Stallman <rms@gnu.org>
date Fri, 27 Mar 1998 04:56:51 +0000
parents 34e8c91f9018
children 7662be098677
files make-dist
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/make-dist	Fri Mar 27 04:53:22 1998 +0000
+++ b/make-dist	Fri Mar 27 04:56:51 1998 +0000
@@ -164,10 +164,10 @@
   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