[source] build: properly pass CPP and CXX flags in HOST_MAKE_VARS
LEDE Commits
lede-commits at lists.infradead.org
Wed Feb 1 07:08:38 PST 2017
jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/e5bc7bff85ba436f8ad4a1012b15d06d396f0b01
commit e5bc7bff85ba436f8ad4a1012b15d06d396f0b01
Author: Jo-Philipp Wich <jo at mein.io>
AuthorDate: Tue Jan 17 09:29:50 2017 +0100
build: properly pass CPP and CXX flags in HOST_MAKE_VARS
Signed-off-by: Jo-Philipp Wich <jo at mein.io>
---
include/host-build.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/host-build.mk b/include/host-build.mk
index c54ee37..70bf6e5 100644
--- a/include/host-build.mk
+++ b/include/host-build.mk
@@ -69,7 +69,8 @@ HOST_CONFIGURE_ARGS = \
HOST_MAKE_VARS = \
CFLAGS="$(HOST_CFLAGS)" \
- CXXFLAGS="$(HOST_CPPFLAGS)" \
+ CPPFLAGS="$(HOST_CPPFLAGS)" \
+ CXXFLAGS="$(HOST_CXXFLAGS)" \
LDFLAGS="$(HOST_LDFLAGS)"
HOST_MAKE_FLAGS =
More information about the lede-commits
mailing list