From 5c8295d89658f13702b17f8fc3a3875ea8b5c153 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Sat, 10 Nov 2001 13:55:22 +0000 Subject: [PATCH] (finder_setwins, setwins): Exclude Calc. --- lisp/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 5fd528b1d00..19124c057ff 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -114,14 +114,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) 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 -- 2.39.5