comparison make-dist @ 65933:4a1ce261e35c

(tempparent): Don't check for 14-char file name limit.
author Richard M. Stallman <rms@gnu.org>
date Sun, 09 Oct 2005 02:08:30 +0000
parents 00005df1b3eb
children 34ac1add981e 5e2d3828e89f
comparison
equal deleted inserted replaced
65932:34fd3b73a2b4 65933:4a1ce261e35c
216 if [ x"${bogosities}" != x"" ]; then 216 if [ x"${bogosities}" != x"" ]; then
217 echo "The following .el files have no corresponding .elc files:" 217 echo "The following .el files have no corresponding .elc files:"
218 echo "${bogosities}" 218 echo "${bogosities}"
219 fi 219 fi
220 rm -f /tmp/el /tmp/elc 220 rm -f /tmp/el /tmp/elc
221
222 ### Check for .el files that would overflow the 14-char limit if compiled.
223 long=`find lisp leim -name '[a-zA-Z0-9]??????????*.el' -print`
224 if [ "$long" != "" ]; then
225 echo "The following .el file names are too long:"
226 echo "$long"
227 fi
228 fi 221 fi
229 222
230 ### Make sure configure is newer than configure.in. 223 ### Make sure configure is newer than configure.in.
231 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then 224 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then
232 echo "\`./configure.in' is newer than \`./configure'" >&2 225 echo "\`./configure.in' is newer than \`./configure'" >&2