From 2fc6a143a7db742e878d041d5fc58b6b378c145e Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 16 Nov 2025 23:12:50 +0100 Subject: [PATCH] resolveip: 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/resolveip/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2