svn commit: r346924 - projects/runtime-coverage-v2

Enji Cooper ngie at FreeBSD.org
Mon Apr 29 20:17:55 UTC 2019


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; \


More information about the svn-src-projects mailing list