summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2020-08-06 18:49:47 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-08-14 14:24:51 +0200
commit80ce928da2c8e0822e91964f0d65afcea5966c1c (patch)
tree88767d5c4098c5aa5b5c717ab3a31d59afe9e46e
parentddf8c800e162a9477e2cdca7df041053ce990da2 (diff)
downloadptxdist-80ce928da2c8e0822e91964f0d65afcea5966c1c.tar.gz
ptxdist-80ce928da2c8e0822e91964f0d65afcea5966c1c.tar.xz
kernel: fix typo in HOSTCXX variable
The typo makes the variable expand to nothing. This was probably never caught because g++ is usually not used when building the kernel. Fixes: a668fd6120742fe5ef6e (2020-06-11, "kernel: handle plugin detection for kernel version >= v5.7") Signed-off-by: Roland Hieber <rhi@pengutronix.de> Message-Id: <20200806164947.4187-1-rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/kernel.make2
-rw-r--r--rules/templates/template-kernel-make2
2 files changed, 2 insertions, 2 deletions
diff --git a/rules/kernel.make b/rules/kernel.make
index 0d90784e6..c91267c34 100644
--- a/rules/kernel.make
+++ b/rules/kernel.make
@@ -77,7 +77,7 @@ KERNEL_SHARED_OPT := \
ifndef PTXCONF_KERNEL_GCC_PLUGINS
# no gcc plugins; avoid config changes depending on the host compiler
KERNEL_SHARED_OPT += \
- HOSTCXX="$(HOSTXX) -DGENERATOR_FILE" \
+ HOSTCXX="$(HOSTCXX) -DGENERATOR_FILE" \
HOSTCC="$(HOSTCC) -DGENERATOR_FILE"
endif
diff --git a/rules/templates/template-kernel-make b/rules/templates/template-kernel-make
index 5274b42c2..c53110165 100644
--- a/rules/templates/template-kernel-make
+++ b/rules/templates/template-kernel-make
@@ -43,7 +43,7 @@ KERNEL_@PACKAGE@_SHARED_OPT := \
# no gcc plugins; avoid config changes depending on the host compiler
KERNEL_@PACKAGE@_SHARED_OPT += \
- HOSTCXX="$(HOSTXX) -DGENERATOR_FILE" \
+ HOSTCXX="$(HOSTCXX) -DGENERATOR_FILE" \
HOSTCC="$(HOSTCC) -DGENERATOR_FILE"
KERNEL_@PACKAGE@_CONF_OPT := \