summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens2025-11-16 22:12:11 +0000
committerHauke Mehrtens2025-11-18 22:13:45 +0000
commitf95fd36a2ed9e9e968425d0d1683448a63126a0b (patch)
tree1da77b3c9edb596fdb3aa63add02fc7d42fc24d8
parentf5fade5fbfa430bc4d5b14d0492203f9f2efd6d1 (diff)
downloadopenwrt-f95fd36a2ed9e9e968425d0d1683448a63126a0b.tar.gz
comgt: Forward LDFLAGS
Forward the TARGET_LDFLAGS to the linking process. Link: https://github.com/openwrt/openwrt/pull/20813 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/network/utils/comgt/Makefile2
1 files changed, 1 insertions, 1 deletions
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