changeset 54248:28e8d2c26aa1

(setwins, setwins_almost): Skip .arch-ids and other hidden files/directories.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 03 Mar 2004 03:57:32 +0000
parents fd1d1c7abf54
children 67285afe56f3
files lisp/Makefile.in
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/Makefile.in	Tue Mar 02 22:19:19 2004 +0000
+++ b/lisp/Makefile.in	Wed Mar 03 03:57:32 2004 +0000
@@ -138,14 +138,14 @@
 
 setwins=subdirs=`find $$wd -type d -print`; \
 	for file in $$subdirs; do \
-	   case $$file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;; \
+	   case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
 		*) wins="$$wins $$file" ;; \
 	   esac; \
         done
 
 setwins_almost=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 ) ;; \
 		*) wins="$$wins $$file" ;; \
 	   esac; \
         done