svn commit: r241280 - head/usr.bin/make

Andriy Gapon avg at FreeBSD.org
Sat Oct 6 19:19:33 UTC 2012


Author: avg
Date: Sat Oct  6 19:19:32 2012
New Revision: 241280
URL: http://svn.freebsd.org/changeset/base/241280

Log:
  make: report :M or :N pattern in debug mode
  
  MFC after:	12 days

Modified:
  head/usr.bin/make/var.c

Modified: head/usr.bin/make/var.c
==============================================================================
--- head/usr.bin/make/var.c	Sat Oct  6 19:19:21 2012	(r241279)
+++ head/usr.bin/make/var.c	Sat Oct  6 19:19:32 2012	(r241280)
@@ -1421,6 +1421,7 @@ modifier_M(VarParser *vp, const char val
 		vp->ptr++;
 	}
 	*ptr = '\0';
+	DEBUGF(VAR, ("Pattern :%s\n", patt));
 
 	if (modifier == 'M') {
 		newValue = VarModify(value, VarMatch, patt);


More information about the svn-src-head mailing list