diff options
author | 2004-12-28 19:44:17 +0000 | |
---|---|---|
committer | 2004-12-28 19:44:17 +0000 | |
commit | 376e3357a2cba3221a74348dc03e968056d61cfe (patch) | |
tree | d5f68651e2bc89b0abcffd6dd749d62751b8a28c | |
parent | let alpha have a .c.a rule, oll korrect miod@ (diff) | |
download | wireguard-openbsd-376e3357a2cba3221a74348dc03e968056d61cfe.tar.xz wireguard-openbsd-376e3357a2cba3221a74348dc03e968056d61cfe.zip |
add more standard patterns to ignore; jfb ok
-rw-r--r-- | usr.bin/cvs/file.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index 3c4004574ce..580b39ae17d 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.44 2004/12/14 21:23:44 jfb Exp $ */ +/* $OpenBSD: file.c,v 1.45 2004/12/28 19:44:17 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -64,20 +64,30 @@ static const char *cvs_ign_std[] = { "..", "*.o", "*.so", + "*.a", "*.bak", "*.orig", "*.rej", + "*.old", "*.exe", "*.depend", + "*.obj", + "*.elc", + "*.ln", + "*.olb", "CVS", "core", ".#*", + "*~", + "_$*", + "*$", #ifdef OLD_SMELLY_CRUFT "RCSLOG", "tags", "TAGS", "RCS", "SCCS", + "cvslog.*", /* to ignore CVS_CLIENT_LOG output */ "#*", ",*", #endif |