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

Enji Cooper ngie at FreeBSD.org
Sun Apr 28 09:41:47 UTC 2019


Author: ngie
Date: Sun Apr 28 09:41:46 2019
New Revision: 346809
URL: https://svnweb.freebsd.org/changeset/base/346809

Log:
  Fix "make universe" pathing by adding a missing tmp path component

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

Modified: projects/runtime-coverage-v2/Makefile.inc1
==============================================================================
--- projects/runtime-coverage-v2/Makefile.inc1	Sun Apr 28 09:38:41 2019	(r346808)
+++ projects/runtime-coverage-v2/Makefile.inc1	Sun Apr 28 09:41:46 2019	(r346809)
@@ -2731,8 +2731,9 @@ _target_toolchain_libs: .PHONY .MAKE
 		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_lib}/ obj; fi; \
 		${MAKE} DIRPRFX=${_lib}/ all; \
 		${MAKE} DIRPRFX=${_lib}/ DESTDIR=${WORLDTMP} install; \
-		if [ -d "${HOST_OBJTOP}" ]; then \
-		    ${MAKE} DIRPRFX=${_lib}/ DESTDIR=${HOST_OBJTOP} install; \
+		if [ -d "${HOST_OBJTOP}/tmp" ]; then \
+		    ${MAKE} DIRPRFX=${_lib}/ DESTDIR="${HOST_OBJTOP}/tmp" \
+		    install; \
 		fi
 .endfor
 


More information about the svn-src-projects mailing list