# HG changeset patch # User Gerd Moellmann # Date 1005400522 0 # Node ID b5a76830e73e216448de313c761470d5a5bb9867 # Parent f288d1d604a7312359e442cd452c3e7ba1172082 (finder_setwins, setwins): Exclude Calc. diff -r f288d1d604a7 -r b5a76830e73e lisp/Makefile.in --- a/lisp/Makefile.in Sat Nov 10 13:51:02 2001 +0000 +++ b/lisp/Makefile.in Sat Nov 10 13:55:22 2001 +0000 @@ -114,14 +114,14 @@ setwins=subdirs=`find $$wd -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done finder_setwins=subdirs=`find $$wd -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term) ;; \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term | */calc ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done