From: Florian Fainelli Date: Tue, 4 Apr 2017 01:57:59 +0000 (-0700) Subject: sslh: Also pass down TARGET_CPPFLAGS X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=37e8aa3639b68f185efded52ea1a77f251570a19;p=openwrt-packages.git sslh: Also pass down TARGET_CPPFLAGS Make sure we do pass TARGET_CPPFLAGS using CPPFLAGS (which is supported by sslh's Makefile), fixing build issues with some external toolchains: mipsel-linux-gnu-gcc -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc -fno-caller-saves -Wno-unused-result -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -DENABLE_REGEX -DLIBCONFIG -c sslh-main.c sslh-main.c:26:23: fatal error: libconfig.h: No such file or directory #include ^ compilation terminated. Makefile:63: recipe for target 'sslh-main.o' failed make[4]: *** [sslh-main.o] Error 1 Signed-off-by: Florian Fainelli --- diff --git a/net/sslh/Makefile b/net/sslh/Makefile index b59ff5374..f4e71088c 100644 --- a/net/sslh/Makefile +++ b/net/sslh/Makefile @@ -38,6 +38,7 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="$(TARGET_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ ENABLE_REGEX=1 \ USELIBCONFIG=1 \