diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-09-28 19:35:19 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-10-01 15:16:50 +0200 |
commit | b02427f19d2c31298f57086ad546b10f6e5361b3 (patch) | |
tree | 492a8087f8cfc6157df3481db091f1837069a31f | |
parent | ca287f204426446fd782544131429030c4825f0e (diff) | |
download | buildroot-b02427f19d2c31298f57086ad546b10f6e5361b3.tar.gz buildroot-b02427f19d2c31298f57086ad546b10f6e5361b3.zip |
haproxy: fix linking with lua
Use LUA_LIB_NAME to give lua library name otherwise haproxy can't find
it
Fixes:
- http://autobuild.buildroot.net/results/28b6672188bb0082ac1467d3b45904880e3634f3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/haproxy/haproxy.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/haproxy/haproxy.mk b/package/haproxy/haproxy.mk index a799e69651..363fc4447f 100644 --- a/package/haproxy/haproxy.mk +++ b/package/haproxy/haproxy.mk @@ -25,7 +25,9 @@ endif ifeq ($(BR2_PACKAGE_LUA_5_3),y) HAPROXY_DEPENDENCIES += lua -HAPROXY_MAKE_OPTS += USE_LUA=1 +HAPROXY_MAKE_OPTS += \ + LUA_LIB_NAME=lua \ + USE_LUA=1 endif ifeq ($(BR2_PACKAGE_OPENSSL),y) |