1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284419

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