svn commit: r254340 - head/sys/conf

Simon J. Gerraty sjg at FreeBSD.org
Wed Aug 14 22:19:30 UTC 2013


Author: sjg
Date: Wed Aug 14 22:19:29 2013
New Revision: 254340
URL: http://svnweb.freebsd.org/changeset/base/254340

Log:
  Some objects - such as *_genassym.o are not hooked into
  SRCS OBJS or anything else, yet have a dependency on symlinks
  such as machine/
  
  Reviewed by: obrien

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Wed Aug 14 21:59:48 2013	(r254339)
+++ head/sys/conf/kern.post.mk	Wed Aug 14 22:19:29 2013	(r254340)
@@ -219,7 +219,7 @@ _ILINKS+= x86
 # Ensure that the link exists without depending on it when it exists.
 .for _link in ${_ILINKS}
 .if !exists(${.OBJDIR}/${_link})
-${SRCS}: ${_link}
+${SRCS} ${CLEAN:M*.o}: ${_link}
 .endif
 .endfor
 


More information about the svn-src-all mailing list