Don't use ${.OBJDIR}/ to qualify target that isn't specified that way

This commit is contained in:
Simon J. Gerraty 2015-06-15 18:43:32 +00:00
parent 4232f82668
commit 8cf80600ef

View File

@ -239,7 +239,7 @@ beforedepend: ${_ILINKS}
# causes all the modules to be rebuilt when the directory pointed to changes.
.for _link in ${_ILINKS}
.if !exists(${.OBJDIR}/${_link})
${OBJS}: ${.OBJDIR}/${_link}
${OBJS}: ${_link}
.endif
.endfor