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
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to