Go to the previous section.
*** mkmodules.c~ Tue Mar 31 16:56:20 1992
--- mkmodules.c Sat Sep 19 14:30:19 1992
***************
*** 183,188 ****
--- 183,202 ----
"a %s file can be used to configure 'cvs commit' checking",
CVSROOTADM_COMMITINFO);
(void) unlink_file (temp);
+
+ /*
+ * Now, check out the "cvsignore" file, so that it is always up-to-date
+ * in the CVSROOT directory.
+ */
+ make_tempfile (temp);
+ if (checkout_file (CVSROOTADM_IGNORE, temp) == 0)
+ rename_rcsfile (temp, CVSROOTADM_IGNORE);
+ else
+ error (0, 0,
+ "a %s file can be used to list files that cvs should ignore",
+ CVSROOTADM_IGNORE);
+ (void) unlink_file (temp);
+
return (0);
}
Go to the previous section.