Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Dec 2015 15:50:35 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291589 - head/share/mk
Message-ID:  <201512011550.tB1FoZF3094994@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Tue Dec  1 15:50:35 2015
New Revision: 291589
URL: https://svnweb.freebsd.org/changeset/base/291589

Log:
  FAST_DEPEND: Actually use -MP from DEPEND_MP, completing r291554.
  
  X-MFC-With:	r291554
  MFC after:	1 week
  Pointyhat to:	bdrewery
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/bsd.dep.mk

Modified: head/share/mk/bsd.dep.mk
==============================================================================
--- head/share/mk/bsd.dep.mk	Tue Dec  1 15:38:39 2015	(r291588)
+++ head/share/mk/bsd.dep.mk	Tue Dec  1 15:50:35 2015	(r291589)
@@ -63,7 +63,7 @@ DEPEND_MP?=	-MP
 # Handle OBJS=../somefile.o hacks.  Just replace '/' rather than use :T to
 # avoid collisions.
 DEPEND_FILTER=	C,/,_,g
-DEPEND_CFLAGS+=	-MD -MF${DEPENDFILE}.${.TARGET:${DEPEND_FILTER}}
+DEPEND_CFLAGS+=	-MD ${DEPEND_MP} -MF${DEPENDFILE}.${.TARGET:${DEPEND_FILTER}}
 DEPEND_CFLAGS+=	-MT${.TARGET}
 CFLAGS+=	${DEPEND_CFLAGS}
 DEPENDOBJS+=	${OBJS} ${POBJS} ${SOBJS}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512011550.tB1FoZF3094994>