diff mbox

[LEDE-DEV,03/13] include: u-boot.mk: remove LEDE HOSTCPPFLAGS from u-boot HOSTCPPFLAGS

Message ID 20170803213759.8875-4-hauke@hauke-m.de
State Rejected
Delegated to: Hauke Mehrtens
Headers show

Commit Message

Hauke Mehrtens Aug. 3, 2017, 9:37 p.m. UTC
This fixes some compile warnings in U-Boot. U-Boot is complaining that
this is not correctly set.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 include/u-boot.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/include/u-boot.mk b/include/u-boot.mk
index 4b3ff69d6b..8e5af6458d 100644
--- a/include/u-boot.mk
+++ b/include/u-boot.mk
@@ -42,7 +42,7 @@  TARGET_DEP = TARGET_$(BUILD_TARGET)$(if $(BUILD_SUBTARGET),_$(BUILD_SUBTARGET))
 
 UBOOT_MAKE_FLAGS = \
 	HOSTCC="$(HOSTCC)" \
-	HOSTCFLAGS='$(HOST_CFLAGS) $$$$(HOSTCPPFLAGS)' \
+	HOSTCFLAGS='$(HOST_CFLAGS)' \
 	HOSTLDFLAGS=""
 
 define Build/U-Boot/Target