aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-06-29 07:09:25 +0000
committerRichard M. Stallman1996-06-29 07:09:25 +0000
commit544174d9e7e4b0bf9a05c32ffd7687df6017dc9c (patch)
tree64f17cddf6f51c11324f87bc49e90a13a7c62493
parentba716acf76872e113966d98520dabe366124b223 (diff)
downloademacs-544174d9e7e4b0bf9a05c32ffd7687df6017dc9c.tar.gz
emacs-544174d9e7e4b0bf9a05c32ffd7687df6017dc9c.zip
Ignore =... files when checking for too-long Lisp file names.
-rwxr-xr-xmake-dist2
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
127rm -f /tmp/el /tmp/elc 127rm -f /tmp/el /tmp/elc
128 128
129### Check for .el files that would overflow the 14-char limit if compiled. 129### Check for .el files that would overflow the 14-char limit if compiled.
130long=`find lisp -name '???????????*.el' -print` 130long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
131if [ "$long" != "" ]; then 131if [ "$long" != "" ]; then
132 echo "The following .el file names are too long:" 132 echo "The following .el file names are too long:"
133 echo "$long" 133 echo "$long"