Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Aug 2020 13:30:19 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364764 - head
Message-ID:  <202008251330.07PDUJL6055740@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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," \



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