Don't add duplicates from LOCAL_LIB_DIRS.

This causes parallel failures.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2016-03-04 22:37:16 +00:00
parent 400b94bbeb
commit 2bece0ce3d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296399

View File

@ -1935,7 +1935,7 @@ lib/liblzma__L: lib/libthr__L
_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
.for _DIR in ${LOCAL_LIB_DIRS}
.if exists(${.CURDIR}/${_DIR}/Makefile)
.if exists(${.CURDIR}/${_DIR}/Makefile) && empty(_generic_libs:M${_DIR})
_generic_libs+= ${_DIR}
.endif
.endfor