Date: Fri, 3 Jun 2016 19:25: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: r301286 - head/share/mk Message-ID: <201606031925.u53JPj2Y064237@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri Jun 3 19:25:45 2016 New Revision: 301286 URL: https://svnweb.freebsd.org/changeset/base/301286 Log: WITH_CCACHE_BUILD + WITH_META_MODE: Ignore ccache changes. Ccache will not affect the output of the objects, so just ignore it for meta mode handling. This avoids having everything rebuild if ccache is updated. Sponsored by: EMC / Isilon Storage Division Modified: head/share/mk/bsd.compiler.mk Modified: head/share/mk/bsd.compiler.mk ============================================================================== --- head/share/mk/bsd.compiler.mk Fri Jun 3 19:25:41 2016 (r301285) +++ head/share/mk/bsd.compiler.mk Fri Jun 3 19:25:45 2016 (r301286) @@ -96,6 +96,9 @@ CCACHE_DIR:= ${CCACHE_DIR:tA} .MAKE.META.IGNORE_PATHS+= ${CCACHE_DIR} .export CCACHE_DIR .endif +# ccache doesn't affect build output so let it slide for meta mode +# comparisons. +.MAKE.META.IGNORE_PATHS+= ${CCACHE_BIN} ccache-print-options: .PHONY @${CCACHE_BIN} -p .endif # exists(${CCACHE_BIN})
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606031925.u53JPj2Y064237>