From d39c88504e3c6b7a76895c200c2f1cf09f78b5b0 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Sat, 21 Aug 1999 17:46:37 +0000 Subject: [PATCH] Exclude CVS dirs like RCS. --- lisp/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; \ -- 2.39.5