aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-05-26 22:22:58 +0000
committerJim Blandy <[email protected]>1993-05-26 22:22:58 +0000
commit254e10d860a51fc779896e9670260263ca9cf87d (patch)
treedd9530b9a16db88b1243c91446ee421f86ab2916 /make-dist
parentabe85b1b3a7d10c6b10f67139c7cd86d24760370 (diff)
Report .elc bogosities more clearly.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist6
1 files changed, 5 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index f0c8805bc8..34fbf0f731 100755
--- a/make-dist
+++ b/make-dist
@@ -90,7 +90,11 @@ fi
### Check for .elc files with no corresponding .el file.
ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el
ls -1 lisp/*.elc > /tmp/elc
-comm -13 /tmp/el /tmp/elc
+bogosities="`comm -13 /tmp/el /tmp/elc`"
+if [ "${bogosities}" != "" ]; then
+ echo "The following .elc files have no corresponding .el files:"
+ echo "${bogosities}"
+fi
echo "Creating staging directory: \`${tempparent}'"
mkdir ${tempparent}