From: Hauke Mehrtens Date: Sun, 16 Nov 2025 22:12:50 +0000 (+0100) Subject: resolveip: Forward LDFLAGS X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=2fc6a143a7db742e878d041d5fc58b6b378c145e;p=openwrt%2Fstaging%2Fstintel.git resolveip: Forward LDFLAGS Forward the TARGET_LDFLAGS to the linking process. Link: https://github.com/openwrt/openwrt/pull/20813 Signed-off-by: Hauke Mehrtens --- 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