Mercurial > emacs
comparison make-dist @ 15301:a68e276baffd
Check for long file names.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 29 May 1996 14:56:45 +0000 |
parents | e8ceba484a94 |
children | 30ac85981d2e |
comparison
equal
deleted
inserted
replaced
15300:3dd2c61941f1 | 15301:a68e276baffd |
---|---|
124 echo "The following .elc files have no corresponding .el files:" | 124 echo "The following .elc files have no corresponding .el files:" |
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. | |
130 long=`find lisp -name '???????????*.el' -print` | |
131 if [ "$long" != "" ]; then | |
132 echo "The following .el file names are too long:" | |
133 echo "$long" | |
134 fi | |
135 | |
129 ### Make sure configure is newer than configure.in. | 136 ### Make sure configure is newer than configure.in. |
130 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then | 137 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then |
131 echo "\`./configure.in' is newer than \`./configure'" >&2 | 138 echo "\`./configure.in' is newer than \`./configure'" >&2 |
132 echo "Running autoconf" >&2 | 139 echo "Running autoconf" >&2 |
133 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; } | 140 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; } |