comparison make-dist @ 15569:409a68abc61c

Ignore =... files when checking for too-long Lisp file names.
author Richard M. Stallman <rms@gnu.org>
date Sat, 29 Jun 1996 07:09:25 +0000
parents 30ac85981d2e
children 80562f089595
comparison
equal deleted inserted replaced
15568:30ac85981d2e 15569:409a68abc61c
125 echo "${bogosities}" 125 echo "${bogosities}"
126 fi 126 fi
127 rm -f /tmp/el /tmp/elc 127 rm -f /tmp/el /tmp/elc
128 128
129 ### Check for .el files that would overflow the 14-char limit if compiled. 129 ### Check for .el files that would overflow the 14-char limit if compiled.
130 long=`find lisp -name '???????????*.el' -print` 130 long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
131 if [ "$long" != "" ]; then 131 if [ "$long" != "" ]; then
132 echo "The following .el file names are too long:" 132 echo "The following .el file names are too long:"
133 echo "$long" 133 echo "$long"
134 fi 134 fi
135 135