Skip to content
Snippets Groups Projects
Commit 967cc47f authored by sof's avatar sof
Browse files

[project @ 1998-11-26 09:17:22 by sof]

don't include the non-conflict files that CVS leaves behind in the build tree
parent 3a0ea74e
No related merge requests found
......@@ -207,6 +207,8 @@ int rel; /* if true, prepend "../" to fn before using */
while (dp = readdir (df)) {
if (dp->d_name[strlen(dp->d_name) - 1] == '~')
continue;
if (dp->d_name[0] == '.' && dp->d_name[1] == '#') /* 'non-conflict files' left behind by CVS */
continue;
strcpy (p, dp->d_name);
if (n_dirs > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment