When using -stdlib=libc++, add the correct dependency to .depend in

bsd.prog.mk.

Submitted by:	Yamaya Takashi <yamayan@kbh.biglobe.ne.jp>
MFC after:	2 weeks
This commit is contained in:
Dimitry Andric 2012-08-25 19:30:15 +00:00
parent 087d31736a
commit d515c63db9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239686

View File

@ -126,10 +126,14 @@ _EXTRADEPEND:
.else
echo ${PROG}: ${LIBC} ${DPADD} >> ${DEPENDFILE}
.if defined(PROG_CXX)
.if !empty(CXXFLAGS:M-stdlib=libc++)
echo ${PROG}: ${LIBCPLUSPLUS} >> ${DEPENDFILE}
.else
echo ${PROG}: ${LIBSTDCPLUSPLUS} >> ${DEPENDFILE}
.endif
.endif
.endif
.endif
.if !target(install)