]> git.eshelyaron.com Git - emacs.git/commitdiff
(finder_setwins, setwins): Exclude Calc.
authorGerd Moellmann <gerd@gnu.org>
Sat, 10 Nov 2001 13:55:22 +0000 (13:55 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sat, 10 Nov 2001 13:55:22 +0000 (13:55 +0000)
lisp/Makefile.in

index 5fd528b1d00f7590cf427f6d8dca326a45786e47..19124c057ff4be74c8d7df2c91e5445e54f528ff 100644 (file)
@@ -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