summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2020-08-25 13:30:19 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2020-08-25 13:30:19 +0000
commitdce3fcd4ffb22c23d16200dccca69c1004aa99ae (patch)
tree72f4505d39a9d52e089f56cf3f834736d0792087 /Makefile
parent3ce13dbc233b7c063c08cf33e391da4f718be6ad (diff)
downloadsrc-test2-dce3fcd4ffb22c23d16200dccca69c1004aa99ae.tar.gz
src-test2-dce3fcd4ffb22c23d16200dccca69c1004aa99ae.zip
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
Notes
Notes: svn path=/head/; revision=364764
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fa863432e1e7..ea4827a0bb26 100644
--- a/Makefile
+++ b/Makefile
@@ -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," \