Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jun 2015 18:43:32 +0000 (UTC)
From:      "Simon J. Gerraty" <sjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284419 - head/sys/conf
Message-ID:  <201506151843.t5FIhW89003012@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506151843.t5FIhW89003012>