# HG changeset patch # User Karl Heuer # Date 833381805 0 # Node ID a68e276baffd9bbfd6b562e88ca4e6b3b6c8b6ab # Parent 3dd2c61941f1ffd8dcf68ea1c37522e027e408eb Check for long file names. diff -r 3dd2c61941f1 -r a68e276baffd make-dist --- a/make-dist Tue May 28 15:54:53 1996 +0000 +++ b/make-dist Wed May 29 14:56:45 1996 +0000 @@ -126,6 +126,13 @@ 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