diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-06-29 07:09:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-06-29 07:09:25 +0000 |
commit | 360c2b56373c17bbc8dd6738aa2aea56d44a2b2f (patch) | |
tree | 68f5b269b75baebd8747b5b6663a3b6db5cd448a /make-dist | |
parent | 1db8bf608395776e203cc7faab04f60e75fb75eb (diff) | |
download | emacs-360c2b56373c17bbc8dd6738aa2aea56d44a2b2f.tar.gz |
Ignore =... files when checking for too-long Lisp file names.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist index f75b79ab617..b8099d5ba88 100755 --- a/make-dist +++ b/make-dist @@ -127,7 +127,7 @@ 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` +long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print` if [ "$long" != "" ]; then echo "The following .el file names are too long:" echo "$long" |