From: Hauke Mehrtens Date: Mon, 16 Feb 2026 23:55:47 +0000 (+0100) Subject: zyxel-bootconfig: add CPPFLAGS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8ea5004f4cd3cbc48cb427914a9e46920a68518;p=thirdparty%2Fopenwrt.git zyxel-bootconfig: add CPPFLAGS Add the OpenWrt CPPFLAGS to the CFLAGS. zyxel-bootconfig does not support CPPFLAGS. This fixes fortify sources support. Link: https://github.com/openwrt/openwrt/pull/22056 Signed-off-by: Hauke Mehrtens --- diff --git a/package/utils/zyxel-bootconfig/Makefile b/package/utils/zyxel-bootconfig/Makefile index 4d1ceb72d59..721a9b8d798 100644 --- a/package/utils/zyxel-bootconfig/Makefile +++ b/package/utils/zyxel-bootconfig/Makefile @@ -26,7 +26,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ - CFLAGS="$(TARGET_CFLAGS) -Wall" \ + CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -Wall" \ LDFLAGS="$(TARGET_LDFLAGS)" endef