diff options
| author | Hauke Mehrtens | 2025-11-16 22:11:06 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-11-18 22:13:45 +0000 |
| commit | f5fade5fbfa430bc4d5b14d0492203f9f2efd6d1 (patch) | |
| tree | 9befbd3806788c0429a7ea32b7cdb4dbee8c6cea | |
| parent | 4afaacdd7f578d4e365d0cfac44b5a614650adb3 (diff) | |
| download | openwrt-f5fade5fbfa430bc4d5b14d0492203f9f2efd6d1.tar.gz | |
ead: 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/services/ead/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/network/services/ead/Makefile b/package/network/services/ead/Makefile index 226285f751..29deda0f6e 100644 --- a/package/network/services/ead/Makefile +++ b/package/network/services/ead/Makefile @@ -44,7 +44,8 @@ MAKE_FLAGS += \ CONFIGURE_ARGS="$(CONFIGURE_ARGS)" \ LIBS_EADCLIENT="$(PKG_BUILD_DIR)/tinysrp/libtinysrp.a" \ LIBS_EAD="$(PKG_BUILD_DIR)/tinysrp/libtinysrp.a $(STAGING_DIR)/usr/lib/libpcap.a" \ - CFLAGS="$(TARGET_CFLAGS)" + CFLAGS="$(TARGET_CFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" define Package/ead/install $(INSTALL_DIR) $(1)/sbin |