Date: Sun, 13 Mar 2016 20:51:45 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r296809 - head/share/mk Message-ID: <201603132051.u2DKpj7h056707@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Sun Mar 13 20:51:45 2016 New Revision: 296809 URL: https://svnweb.freebsd.org/changeset/base/296809 Log: Follow-up r296700: Fix incorrectly declaring these as .MAIN. This broke bootstrap-tools at least for DIRDEPS_BUILD. Sponsored by: EMC / Isilon Storage Division Modified: head/share/mk/local.sys.mk Modified: head/share/mk/local.sys.mk ============================================================================== --- head/share/mk/local.sys.mk Sun Mar 13 19:50:17 2016 (r296808) +++ head/share/mk/local.sys.mk Sun Mar 13 20:51:45 2016 (r296809) @@ -33,9 +33,9 @@ META_COOKIE= ${COOKIE.${.TARGET}:U${.OB META_COOKIE_RM= @rm -f ${META_COOKIE} META_COOKIE_TOUCH= @touch ${META_COOKIE} CLEANFILES+= ${META_TARGETS} -_meta_dep_before: .USEBEFORE +_meta_dep_before: .USEBEFORE .NOTMAIN ${META_COOKIE_RM} -_meta_dep_after: .USE +_meta_dep_after: .USE .NOTMAIN ${META_COOKIE_TOUCH} # Attach this to a target to allow it to benefit from meta mode's # not rerunning a command if it doesn't need to be considering its
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603132051.u2DKpj7h056707>