package/turbolua: Fix optional openssl dependency
turbolua fails to build when we have openssl selected, because it didn't mention openssl in the dependency list. Fix build failure by specifying openssl in dependency list when it is selected. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
0db34529f4
commit
84c700c8d9
@ -12,9 +12,15 @@ TURBOLUA_LICENSE_FILES = LICENSE
|
||||
|
||||
TURBOLUA_MAKE_OPTS = \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
SSL=$(if $(BR2_PACKAGE_OPENSSL),openssl,none) \
|
||||
LUAJIT_VERSION="$(LUAJIT_VERSION)"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
TURBOLUA_MAKE_OPTS += SSL=openssl
|
||||
TURBOLUA_DEPENDENCIES += openssl
|
||||
else
|
||||
TURBOLUA_MAKE_OPTS += SSL=none
|
||||
endif
|
||||
|
||||
define TURBOLUA_BUILD_CMDS
|
||||
$(MAKE) $(TURBOLUA_MAKE_OPTS) -C $(@D) all
|
||||
endef
|
||||
|
Loading…
Reference in New Issue
Block a user