(lisp): Don't process subdirs that start with =.

This commit is contained in:
Richard M. Stallman 1997-06-27 09:41:50 +00:00
parent f298f0d2bd
commit 762d80d122

View file

@ -267,7 +267,7 @@ echo "Making links to \`lisp' and its subdirectories"
## Find all subdirs of lisp dir ## Find all subdirs of lisp dir
for file in `find . -type d -print`; do for file in `find . -type d -print`; do
case $file in case $file in
. | .. | */Old | */RCS) . | .. | */Old | */RCS | */=*)
;; ;;
*) *)
if [ -d $file ]; then if [ -d $file ]; then