diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-05-29 14:56:45 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-05-29 14:56:45 +0000 |
commit | 051835b46e17e28d228076877c380f3edf189b82 (patch) | |
tree | 189693935b41f818ac1f3dace7cbde5d5fb0e586 /make-dist | |
parent | bb0cc28623cd5f09a805bb72af611379de56fc21 (diff) | |
download | emacs-051835b46e17e28d228076877c380f3edf189b82.tar.gz |
Check for long file names.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/make-dist b/make-dist index 0f37542229f..0a516bf1732 100755 --- a/make-dist +++ b/make-dist @@ -126,6 +126,13 @@ if [ "${bogosities}" != "" ]; then fi rm -f /tmp/el /tmp/elc +### Check for .el files that would overflow the 14-char limit if compiled. +long=`find lisp -name '???????????*.el' -print` +if [ "$long" != "" ]; then + echo "The following .el file names are too long:" + echo "$long" +fi + ### Make sure configure is newer than configure.in. if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then echo "\`./configure.in' is newer than \`./configure'" >&2 |