diff options
| author | Rosen Penev | 2025-07-27 18:37:27 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-07-29 19:33:12 +0000 |
| commit | b0650c50c8f040cf3f94af0f9b07e65c14f36045 (patch) | |
| tree | 514b9a41bc91dfdd0824a48a006435c5d289b838 | |
| parent | dddf7b05cded37514be383fc3119b7277d410a33 (diff) | |
| download | openwrt-b0650c50c8f040cf3f94af0f9b07e65c14f36045.tar.gz | |
tools/expat: fix compilation with ccache
Even though expat is a C library, the configure script tests both C and
C++ compilers so a fix is needed for the latter.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19594
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | tools/expat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/expat/Makefile b/tools/expat/Makefile index 941f0c3fbf..8e46aa989e 100644 --- a/tools/expat/Makefile +++ b/tools/expat/Makefile @@ -20,6 +20,7 @@ HOST_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/host-build.mk HOSTCC := $(HOSTCC_NOCACHE) +HOSTCXX := $(HOSTCXX_NOCACHE) HOST_CONFIGURE_ARGS += \ --disable-shared \ |