Date: Tue, 10 Mar 2015 05:20:41 +0000 (UTC) From: Peter Wemm <peter@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r279838 - stable/9/sys/conf Message-ID: <201503100520.t2A5Kfkl090560@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503100520.t2A5Kfkl090560>