From: Karl Heuer Date: Wed, 29 May 1996 14:56:45 +0000 (+0000) Subject: Check for long file names. X-Git-Tag: emacs-19.34~561 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f56744231472710b1ddb5c391e125c9ccb598ea1;p=emacs.git Check for long file names. --- 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