* doctool.c (scan_directory): Ignore "CVS" directories.
This commit is contained in:
parent
9287bcd534
commit
d855cf1ec8
@ -1,3 +1,7 @@
|
||||
2006-01-12 Igor Peshansky <pechtcha@cs.nyu.edu>
|
||||
|
||||
* doctool.c (scan_directory): Ignore "CVS" directories.
|
||||
|
||||
2005-12-30 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* relnotes.texinfo: Remove entry about hyperthreaded processor.
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* doctool.c
|
||||
|
||||
Copyright 1998,1999,2000,2001 Red Hat, Inc.
|
||||
Copyright 1998,1999,2000,2001,2006 Red Hat, Inc.
|
||||
|
||||
This file is part of Cygwin.
|
||||
|
||||
@ -157,7 +157,7 @@ scan_directory(dirname)
|
||||
|
||||
STAT(name, &st);
|
||||
|
||||
if (S_ISDIR(st.st_mode))
|
||||
if (S_ISDIR(st.st_mode) && strcmp(de->d_name, "CVS") != 0)
|
||||
{
|
||||
scan_directory(name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user