svn commit: r279838 - stable/9/sys/conf

Peter Wemm peter at FreeBSD.org
Tue Mar 10 05:20:41 UTC 2015


Author: peter
Date: Tue Mar 10 05:20:40 2015
New Revision: 279838
URL: https://svnweb.freebsd.org/changeset/base/279838

Log:
  MFC r254340
  
  Some objects - such as *_genassym.o are not hooked into
  SRCS OBJS or anything else, yet have a dependency on symlinks
  such as machine/
  
  This causes occasional build failures with -j

Modified:
  stable/9/sys/conf/kern.post.mk

Modified: stable/9/sys/conf/kern.post.mk
==============================================================================
--- stable/9/sys/conf/kern.post.mk	Tue Mar 10 02:33:51 2015	(r279837)
+++ stable/9/sys/conf/kern.post.mk	Tue Mar 10 05:20:40 2015	(r279838)
@@ -209,7 +209,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