You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-full-overlay/app-crypt/ekeyd/files/ekeyd-1.1.5-makefile-lua-li...

16 lines
355 B

If LUA_V is passed directly to LIBS it ends up being expanded to an empty
string at link time.
--- a/host/Makefile
+++ b/host/Makefile
@@ -111,7 +111,8 @@
CFLAGS += '-DEKEYD_VERSION_S=""$(EKEYD_VERSION_S)""'
CFLAGS += $(EXTRA_CFLAGS)
-LIBS += -llua -lm $(LIBDL)
+LUA_LIBS += -llua$(LUA_V) -lm
+LIBS += $(LUA_LIBS) $(LIBDL)
LDFLAGS += $(LIBDIRS)