Mercurial > emacs
changeset 25340:08bf4a1b174f
Exclude CVS dirs like RCS.
author | Dave Love <fx@gnu.org> |
---|---|
date | Sat, 21 Aug 1999 17:46:37 +0000 |
parents | aa2f8bc34e57 |
children | 9295aaade56b |
files | lisp/Makefile |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/Makefile Sat Aug 21 17:27:31 1999 +0000 +++ b/lisp/Makefile Sat Aug 21 17:46:37 1999 +0000 @@ -19,7 +19,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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; \