svn commit: r351893 - stable/11/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 5 20:38:33 UTC 2019


Author: bdrewery
Date: Thu Sep  5 20:38:33 2019
New Revision: 351893
URL: https://svnweb.freebsd.org/changeset/base/351893

Log:
  MFC r347458:
  
    Fix build race with machine links and genoffset.o.

Modified:
  stable/11/sys/conf/kern.post.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/conf/kern.post.mk
==============================================================================
--- stable/11/sys/conf/kern.post.mk	Thu Sep  5 20:31:25 2019	(r351892)
+++ stable/11/sys/conf/kern.post.mk	Thu Sep  5 20:38:33 2019	(r351893)
@@ -293,7 +293,7 @@ _ILINKS+= x86
 # Ensure that the link exists without depending on it when it exists.
 .for _link in ${_ILINKS}
 .if !exists(${.OBJDIR}/${_link})
-${SRCS} ${CLEAN:M*.o}: ${_link}
+${SRCS} ${DEPENDOBJS}: ${_link}
 .endif
 .endfor
 


More information about the svn-src-stable mailing list