svn commit: r284419 - head/sys/conf

Simon J. Gerraty sjg at FreeBSD.org
Mon Jun 15 18:43:32 UTC 2015


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
 


More information about the svn-src-all mailing list