summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2004-12-28 19:44:18 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2004-12-28 19:44:18 +0000
commit894ee98fc09cf347aed5f06e16ca1d5d751049c1 (patch)
tree37a611ba4a9e00326dfee223d8edf4d27041e9f7 /usr.bin/cvs
parentc29b5e16989349832d674228ba048cda6a24d62e (diff)
add more standard patterns to ignore; jfb ok
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/file.c12
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