aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 5d9abc8683c..e1c6b779db2 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -138,14 +138,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
138 138
139setwins=subdirs=`find $$wd -type d -print`; \ 139setwins=subdirs=`find $$wd -type d -print`; \
140 for file in $$subdirs; do \ 140 for file in $$subdirs; do \
141 case $$file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;; \ 141 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
142 *) wins="$$wins $$file" ;; \ 142 *) wins="$$wins $$file" ;; \
143 esac; \ 143 esac; \
144 done 144 done
145 145
146setwins_almost=subdirs=`find $$wd -type d -print`; \ 146setwins_almost=subdirs=`find $$wd -type d -print`; \
147 for file in $$subdirs; do \ 147 for file in $$subdirs; do \
148 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \ 148 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
149 *) wins="$$wins $$file" ;; \ 149 *) wins="$$wins $$file" ;; \
150 esac; \ 150 esac; \
151 done 151 done