Mercurial > emacs
comparison make-dist @ 3146:6bdedf954822
Report .elc bogosities more clearly.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 26 May 1993 22:22:58 +0000 |
parents | 7ecd0f1c7465 |
children | b18adae0a424 |
comparison
equal
deleted
inserted
replaced
3145:6cd314c2ddde | 3146:6bdedf954822 |
---|---|
88 fi | 88 fi |
89 | 89 |
90 ### Check for .elc files with no corresponding .el file. | 90 ### Check for .elc files with no corresponding .el file. |
91 ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el | 91 ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el |
92 ls -1 lisp/*.elc > /tmp/elc | 92 ls -1 lisp/*.elc > /tmp/elc |
93 comm -13 /tmp/el /tmp/elc | 93 bogosities="`comm -13 /tmp/el /tmp/elc`" |
94 if [ "${bogosities}" != "" ]; then | |
95 echo "The following .elc files have no corresponding .el files:" | |
96 echo "${bogosities}" | |
97 fi | |
94 | 98 |
95 echo "Creating staging directory: \`${tempparent}'" | 99 echo "Creating staging directory: \`${tempparent}'" |
96 mkdir ${tempparent} | 100 mkdir ${tempparent} |
97 emacsname="emacs-${version}${new_extension}" | 101 emacsname="emacs-${version}${new_extension}" |
98 tempdir="${tempparent}/${emacsname}" | 102 tempdir="${tempparent}/${emacsname}" |