svn commit: r279945 - head/contrib/bmake

Simon J. Gerraty sjg at FreeBSD.org
Fri Mar 13 02:54:47 UTC 2015


Author: sjg
Date: Fri Mar 13 02:54:46 2015
New Revision: 279945
URL: https://svnweb.freebsd.org/changeset/base/279945

Log:
  Make sure that -- filemon is at start of a line, so that
  it is found as expected.

Modified:
  head/contrib/bmake/meta.c

Modified: head/contrib/bmake/meta.c
==============================================================================
--- head/contrib/bmake/meta.c	Fri Mar 13 02:49:55 2015	(r279944)
+++ head/contrib/bmake/meta.c	Fri Mar 13 02:54:46 2015	(r279945)
@@ -169,7 +169,7 @@ filemon_read(FILE *mfp, int fd)
     if ((fp = fdopen(fd, "r")) == NULL)
 	err(1, "Could not read build monitor file '%d'", fd);
 
-    fprintf(mfp, "-- filemon acquired metadata --\n");
+    fprintf(mfp, "\n-- filemon acquired metadata --\n");
 
     while (fgets(buf, sizeof(buf), fp)) {
 	fprintf(mfp, "%s", buf);


More information about the svn-src-head mailing list