Author: sjg Date: Mon Jun 15 18:43:32 2015 New Revision: 284419 URL: https://svnweb.freebsd.org/changeset/base/284419
Log: Don't use ${.OBJDIR}/ to qualify target that isn't specified that way Modified: head/sys/conf/kmod.mk Modified: head/sys/conf/kmod.mk ============================================================================== --- head/sys/conf/kmod.mk Mon Jun 15 18:16:23 2015 (r284418) +++ head/sys/conf/kmod.mk Mon Jun 15 18:43:32 2015 (r284419) @@ -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 _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"