From: Dave Love Date: Sat, 21 Aug 1999 17:46:37 +0000 (+0000) Subject: Exclude CVS dirs like RCS. X-Git-Tag: emacs-pretest-21.0.90~7101 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d39c88504e3c6b7a76895c200c2f1cf09f78b5b0;p=emacs.git Exclude CVS dirs like RCS. --- diff --git a/lisp/Makefile b/lisp/Makefile index 1efe46e80c3..684fe148ec8 100644 --- a/lisp/Makefile +++ b/lisp/Makefile @@ -19,7 +19,7 @@ doit: custom-deps: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -29,7 +29,7 @@ custom-deps: doit finder-data: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -39,7 +39,7 @@ finder-data: doit autoloads: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -49,7 +49,7 @@ autoloads: doit update-subdirs: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -60,7 +60,7 @@ update-subdirs: doit updates: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \