Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Apr 2019 20:17:54 +0000 (UTC)
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r346924 - projects/runtime-coverage-v2
Message-ID:  <201904292017.x3TKHsST099786@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Apr 29 20:17:53 2019
New Revision: 346924
URL: https://svnweb.freebsd.org/changeset/base/346924

Log:
  Pass `MK_COVERAGE_SUPPORT` from _libraries instead of libraries
  
  This matches more of the pattern used by libraries and I suspect will result in
  more correct behavior when building `_coverage_libs` as part of the
  `_target_toolchain_libs` target.

Modified:
  projects/runtime-coverage-v2/Makefile.inc1

Modified: projects/runtime-coverage-v2/Makefile.inc1
==============================================================================
--- projects/runtime-coverage-v2/Makefile.inc1	Mon Apr 29 20:10:28 2019	(r346923)
+++ projects/runtime-coverage-v2/Makefile.inc1	Mon Apr 29 20:17:53 2019	(r346924)
@@ -1115,7 +1115,8 @@ _libraries:
 	@echo ">>> stage 4.2: building libraries"
 	@echo "--------------------------------------------------------------"
 	${_+_}cd ${.CURDIR}; \
-	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
+	    ${WMAKE} -DNO_FSCHG -DNO_LINT \
+	    MK_COVERAGE_SUPPORT=${MK_COVERAGE} MK_HTML=no MK_MAN=no \
 	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} \
 	    libraries
 everything: .PHONY
@@ -2707,8 +2708,7 @@ hierarchy hier: .MAKE .PHONY
 #
 libraries: .MAKE .PHONY
 	${_+_}cd ${.CURDIR}; \
-	    ${MAKE} -f Makefile.inc1 _target_toolchain_libs MK_COVERAGE=no \
-	        MK_COVERAGE_SUPPORT=${MK_COVERAGE}; \
+	    ${MAKE} -f Makefile.inc1 _target_toolchain_libs; \
 	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
 	    ${MAKE} -f Makefile.inc1 _startup_libs; \
 	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904292017.x3TKHsST099786>