summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-06-27 09:37:27 +0000
committerRichard M. Stallman <rms@gnu.org>1997-06-27 09:37:27 +0000
commit54ee2536c497bbfa5aed2f5fba13b3a7234ae7e0 (patch)
treef16fda1740c38349e295d026f3b55a678872a72e /make-dist
parentcef5e39edb9055d9ce8a2e05a8c2d2e9f0e88fdd (diff)
downloademacs-54ee2536c497bbfa5aed2f5fba13b3a7234ae7e0.tar.gz
Fix up the text for .el files that are not compiled.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist3
1 files changed, 2 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index 67aaffe9d4d..ebcd4baff7b 100755
--- a/make-dist
+++ b/make-dist
@@ -157,13 +157,14 @@ rm -f /tmp/el /tmp/elc
(cd lisp; ls -1 [a-z]*.el) > /tmp/el
(cd lisp; ls -1 [a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc
losers="`comm -23 /tmp/el /tmp/elc`"
+bogosities=
for file in $losers; do
if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then
bogosities="$file $bogosities"
fi
done
if [ "${bogosities}" != "" ]; then
- echo "The following .elc files have no corresponding .el files:"
+ echo "The following .el files have no corresponding .elc files:"
echo "${bogosities}"
fi
rm -f /tmp/el /tmp/elc