diff options
| author | Richard M. Stallman | 1997-06-27 09:37:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-27 09:37:27 +0000 |
| commit | f298f0d2bd0bac96fdc5230a299476fa2d7b7bf0 (patch) | |
| tree | 53ea0691172805b40fda186af320a4eee14e7afb /make-dist | |
| parent | 9695aac62519770071470fcc402fb1e170051d8e (diff) | |
| download | emacs-f298f0d2bd0bac96fdc5230a299476fa2d7b7bf0.tar.gz emacs-f298f0d2bd0bac96fdc5230a299476fa2d7b7bf0.zip | |
Fix up the text for .el files that are not compiled.
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -157,13 +157,14 @@ rm -f /tmp/el /tmp/elc | |||
| 157 | (cd lisp; ls -1 [a-z]*.el) > /tmp/el | 157 | (cd lisp; ls -1 [a-z]*.el) > /tmp/el |
| 158 | (cd lisp; ls -1 [a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc | 158 | (cd lisp; ls -1 [a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc |
| 159 | losers="`comm -23 /tmp/el /tmp/elc`" | 159 | losers="`comm -23 /tmp/el /tmp/elc`" |
| 160 | bogosities= | ||
| 160 | for file in $losers; do | 161 | for file in $losers; do |
| 161 | if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then | 162 | if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then |
| 162 | bogosities="$file $bogosities" | 163 | bogosities="$file $bogosities" |
| 163 | fi | 164 | fi |
| 164 | done | 165 | done |
| 165 | if [ "${bogosities}" != "" ]; then | 166 | if [ "${bogosities}" != "" ]; then |
| 166 | echo "The following .elc files have no corresponding .el files:" | 167 | echo "The following .el files have no corresponding .elc files:" |
| 167 | echo "${bogosities}" | 168 | echo "${bogosities}" |
| 168 | fi | 169 | fi |
| 169 | rm -f /tmp/el /tmp/elc | 170 | rm -f /tmp/el /tmp/elc |