svn commit: r279839 - stable/8/sys/conf

Peter Wemm peter at FreeBSD.org
Tue Mar 10 05:23:30 UTC 2015


Author: peter
Date: Tue Mar 10 05:23:29 2015
New Revision: 279839
URL: https://svnweb.freebsd.org/changeset/base/279839

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/8/sys/conf/kern.post.mk

Modified: stable/8/sys/conf/kern.post.mk
==============================================================================
--- stable/8/sys/conf/kern.post.mk	Tue Mar 10 05:20:40 2015	(r279838)
+++ stable/8/sys/conf/kern.post.mk	Tue Mar 10 05:23:29 2015	(r279839)
@@ -202,7 +202,7 @@ _ILINKS+= ${MACHINE_ARCH}
 # 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