comparison make-dist @ 18468:369c696228a6

(lisp): Don't process subdirs that start with =.
author Richard M. Stallman <rms@gnu.org>
date Fri, 27 Jun 1997 09:41:50 +0000
parents 6f263a83b071
children 614b4d642525
comparison
equal deleted inserted replaced
18467:6f263a83b071 18468:369c696228a6
265 ) 265 )
266 266
267 ## Find all subdirs of lisp dir 267 ## Find all subdirs of lisp dir
268 for file in `find . -type d -print`; do 268 for file in `find . -type d -print`; do
269 case $file in 269 case $file in
270 . | .. | */Old | */RCS) 270 . | .. | */Old | */RCS | */=*)
271 ;; 271 ;;
272 *) 272 *)
273 if [ -d $file ]; then 273 if [ -d $file ]; then
274 subdirs="$file $subdirs" 274 subdirs="$file $subdirs"
275 fi 275 fi