svn commit: r364764 - head

Alex Richardson arichardson at FreeBSD.org
Tue Aug 25 13:30:24 UTC 2020


Author: arichardson
Date: Tue Aug 25 13:30:19 2020
New Revision: 364764
URL: https://svnweb.freebsd.org/changeset/base/364764

Log:
  Fix typo in r364325 that broke tinderbox with -DBUILD_WITH_STRICT_TMPPATH
  
  ${TARGET_ARCH} is empty here which results in empy MAKE_PARAMS being
  passed to the buildkernel phase. This breaks the build when using the
  strict TMPPATH since cc will not be included in $PATH.
  
  Reviewed By:	jhb

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Tue Aug 25 13:30:14 2020	(r364763)
+++ head/Makefile	Tue Aug 25 13:30:19 2020	(r364764)
@@ -734,7 +734,7 @@ universe_kernconf_${TARGET}_${kernel}: .MAKE
 	    ${SUB_MAKE} ${JFLAG} buildkernel \
 	    TARGET=${TARGET} \
 	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
-	    ${MAKE_PARAMS_${TARGET_ARCH}} \
+	    ${MAKE_PARAMS_${TARGET_ARCH_${kernel}}} \
 	    KERNCONF=${kernel} \
 	    > _.${TARGET}.${kernel} 2>&1 || \
 	    (echo "${TARGET} ${kernel} kernel failed," \


More information about the svn-src-all mailing list