svn commit: r291589 - head/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Tue Dec 1 15:50:36 UTC 2015
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}
More information about the svn-src-head
mailing list