summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-09 04:49:35 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-09 04:49:35 +0000
commitb32ce17b38404967ae478c233984f20339ce231a (patch)
tree810870ec725d69e4cf916f59f367a28ddb40f334 /make-dist
parentfed6688e879e436a3a0bab1b22bfdc1c0a5e9e66 (diff)
downloademacs-b32ce17b38404967ae478c233984f20339ce231a.tar.gz
Fix previous change.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist16
1 files changed, 11 insertions, 5 deletions
diff --git a/make-dist b/make-dist
index 8f3a7bfa67b..42875f97fb3 100755
--- a/make-dist
+++ b/make-dist
@@ -159,11 +159,17 @@ rm -f /tmp/el /tmp/elc
losers="`comm -23 /tmp/el /tmp/elc`"
bogosities=
for file in $losers; do
- if ! grep -q "dontcompilefiles:.* $file\($\| \)" lisp/Makefile; then
- if [ "$file" != site-init.el ] && [ "$file" != site-load.el ] \
- && [ "$file" != site-start.el ] && [ "$file" != default.el ]; then
- bogosities="$file $bogosities"
- fi
+ file1=`echo $file | sed -e "s|.*/||"`
+ if ! grep -q "dontcompilefiles:.* $file1\($\| \)" lisp/Makefile; then
+ case $file in
+ site-init.el | site-load.el | site-start.el | default.el)
+ ;;
+ term/*)
+ ;;
+ *)
+ bogosities="$file $bogosities"
+ ;;
+ esac
fi
done
if [ x"${bogosities}" != x"" ]; then