From: Richard M. Stallman Date: Fri, 27 Mar 1998 04:56:51 +0000 (+0000) Subject: Fix shell syntax in check for missing .el or .elc files. X-Git-Tag: emacs-20.3~1775 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3985f85d5d2aa56c3a941d5c279bf46482c78cc0;p=emacs.git Fix shell syntax in check for missing .el or .elc files. --- 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