# HG changeset patch # User Jim Blandy # Date 738454744 0 # Node ID 7ecd0f1c746565b8690c98e57af74456f28d86a4 # Parent 40f18bdaf9728d4691c79368da7c5da78d93c36f * make-dist: Check for .elc files with no corresponding .el file. * make-dist: Check for .elc files with no corresponding .el file. diff -r 40f18bdaf972 -r 7ecd0f1c7465 make-dist --- a/make-dist Wed May 26 22:17:29 1993 +0000 +++ b/make-dist Wed May 26 22:19:04 1993 +0000 @@ -87,6 +87,11 @@ exit 1 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 + echo "Creating staging directory: \`${tempparent}'" mkdir ${tempparent} emacsname="emacs-${version}${new_extension}"