lua: ensure that host-lua does not depend on host-readline and host-ncurses
Commit ad6af5819f
removed the
HOST_LUA_DEPENDENCIES assignement to the empty variable, so from that
commit, the dependencies of host-lua are automatically computed from
the dependencies of lua. Since lua can depend on readline and ncurses,
it means that host-lua can depend on host-readline and host-ncurses,
and the host-readline package does not exist in Buildroot. Since there
is no reason to build host-lua with readline/ncurses support, just
re-add the HOST_LUA_DEPENDENCIES variable.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Francois Perrad <fperrad@gmail.com>
This commit is contained in:
parent
5276cb27c0
commit
2ebbec0545
@ -23,6 +23,9 @@ else
|
|||||||
LUA_CFLAGS += -DLUA_USE_POSIX -DLUA_USE_DLOPEN
|
LUA_CFLAGS += -DLUA_USE_POSIX -DLUA_USE_DLOPEN
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# We never want to have host-readline and host-ncurses as dependencies
|
||||||
|
# of host-lua.
|
||||||
|
HOST_LUA_DEPENDENCIES =
|
||||||
HOST_LUA_CFLAGS = -Wall -fPIC -DLUA_USE_DLOPEN -DLUA_USE_POSIX
|
HOST_LUA_CFLAGS = -Wall -fPIC -DLUA_USE_DLOPEN -DLUA_USE_POSIX
|
||||||
HOST_LUA_MYLIBS = -ldl
|
HOST_LUA_MYLIBS = -ldl
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user