aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake-dist5
1 files changed, 5 insertions, 0 deletions
diff --git a/make-dist b/make-dist
index ac2bd91b0f1..f0c8805bc83 100755
--- a/make-dist
+++ b/make-dist
@@ -87,6 +87,11 @@ them, and try again." >&2
87 exit 1 87 exit 1
88fi 88fi
89 89
90### Check for .elc files with no corresponding .el file.
91ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el
92ls -1 lisp/*.elc > /tmp/elc
93comm -13 /tmp/el /tmp/elc
94
90echo "Creating staging directory: \`${tempparent}'" 95echo "Creating staging directory: \`${tempparent}'"
91mkdir ${tempparent} 96mkdir ${tempparent}
92emacsname="emacs-${version}${new_extension}" 97emacsname="emacs-${version}${new_extension}"