Mercurial > emacs
comparison make-dist @ 18693:7113c3fe2d3a
Fix previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 09 Jul 1997 04:49:35 +0000 |
parents | 678528c8dd4f |
children | 4a53a2477850 |
comparison
equal
deleted
inserted
replaced
18692:8727b49151f8 | 18693:7113c3fe2d3a |
---|---|
157 (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el | 157 (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el |
158 (cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc | 158 (cd lisp; ls -1 [a-z]*.elc [a-z]*/[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 bogosities= |
161 for file in $losers; do | 161 for file in $losers; do |
162 if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then | 162 file1=`echo $file | sed -e "s|.*/||"` |
163 if [ "$file" != site-init.el ] && [ "$file" != site-load.el ] \ | 163 if ! grep -q "dontcompilefiles:.* $file1\($\| \)" lisp/Makefile; then |
164 && [ "$file" != site-start.el ] && [ "$file" != default.el ]; then | 164 case $file in |
165 bogosities="$file $bogosities" | 165 site-init.el | site-load.el | site-start.el | default.el) |
166 fi | 166 ;; |
167 term/*) | |
168 ;; | |
169 *) | |
170 bogosities="$file $bogosities" | |
171 ;; | |
172 esac | |
167 fi | 173 fi |
168 done | 174 done |
169 if [ x"${bogosities}" != x"" ]; then | 175 if [ x"${bogosities}" != x"" ]; then |
170 echo "The following .el files have no corresponding .elc files:" | 176 echo "The following .el files have no corresponding .elc files:" |
171 echo "${bogosities}" | 177 echo "${bogosities}" |