From f95fd36a2ed9e9e968425d0d1683448a63126a0b Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 16 Nov 2025 23:12:11 +0100 Subject: [PATCH] comgt: Forward LDFLAGS Forward the TARGET_LDFLAGS to the linking process. Link: https://github.com/openwrt/openwrt/pull/20813 Signed-off-by: Hauke Mehrtens --- package/network/utils/comgt/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/utils/comgt/Makefile b/package/network/utils/comgt/Makefile index 0e826e12cd..f7e9693064 100644 --- a/package/network/utils/comgt/Makefile +++ b/package/network/utils/comgt/Makefile @@ -60,7 +60,7 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ - LDFLAGS="" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ comgt endef -- 2.30.2