Date: Tue, 10 Mar 2015 05:23:30 +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-8@freebsd.org Subject: svn commit: r279839 - stable/8/sys/conf Message-ID: <201503100523.t2A5NUxH092116@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503100523.t2A5NUxH092116>