diff options
| author | Jonathan Luijsmans | 2025-11-04 16:01:11 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-11-16 20:34:08 +0000 |
| commit | 8afdc500928f1145be436583154fe0ce2abc934f (patch) | |
| tree | fc91cd814ca90e8c776e69712b7e306354b760ed | |
| parent | 501f4edb04c434ed966a9443788b2f968abca38f (diff) | |
| download | openwrt-8afdc500928f1145be436583154fe0ce2abc934f.tar.gz | |
lua5.3: Add TARGET_LDFLAGS to MYLDFLAGS
Add TARGET_LDFLAGS to MYLDFLAGS make sure that the required flags are used
during the compilation.
Signed-off-by: Jonathan Luijsmans <jonathan.luijsmans_ext@softathome.com>
Link: https://github.com/openwrt/openwrt/pull/20642
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/utils/lua5.3/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/utils/lua5.3/Makefile b/package/utils/lua5.3/Makefile index 405fa90145..db97c69d6e 100644 --- a/package/utils/lua5.3/Makefile +++ b/package/utils/lua5.3/Makefile @@ -86,6 +86,7 @@ define Build/Compile RANLIB="$(TARGET_CROSS)ranlib" \ INSTALL_ROOT=/usr \ CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ + MYLDFLAGS="$(TARGET_LDFLAGS)" \ PKG_VERSION=$(PKG_VERSION) \ linux rm -rf $(PKG_INSTALL_DIR) |