summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens2025-11-16 22:12:50 +0000
committerHauke Mehrtens2025-11-18 22:13:45 +0000
commit2fc6a143a7db742e878d041d5fc58b6b378c145e (patch)
tree86774c981915bf33426d381462eeac94ad627436
parentf95fd36a2ed9e9e968425d0d1683448a63126a0b (diff)
downloadopenwrt-2fc6a143a7db742e878d041d5fc58b6b378c145e.tar.gz
resolveip: 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/resolveip/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/resolveip/Makefile b/package/network/utils/resolveip/Makefile
index ab5d4eada2..fb8d40619a 100644
--- a/package/network/utils/resolveip/Makefile
+++ b/package/network/utils/resolveip/Makefile
@@ -29,7 +29,7 @@ define Package/resolveip/description
endef
define Build/Compile
- $(TARGET_CC) $(TARGET_CFLAGS) -Wall \
+ $(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -Wall \
-o $(PKG_BUILD_DIR)/resolveip $(PKG_BUILD_DIR)/resolveip.c
endef