1e5e1eac54
The lua-cqueues build system uses m4 during the build: cd /home/test/autobuild/run/instance-1/output/build/lua-cqueues-rel-20161215/src && m4 /home/test/autobuild/run/instance-1/output/build/lua-cqueues-rel-20161215/src/errno.c.m4 >| /home/test/autobuild/run/instance-1/output/build/lua-cqueues-rel-20161215/src/errno.c.tmp Therefore, the package should depend on host-m4. This has been detected using per-package directory support, but a minimal defconfig with just lua and lua-cqueues on a system that doesn't have m4 installed system-wide also exhibits the issue. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
777 B
Makefile
24 lines
777 B
Makefile
################################################################################
|
|
#
|
|
# lua-cqueues
|
|
#
|
|
################################################################################
|
|
|
|
LUA_CQUEUES_VERSION = rel-20161215
|
|
LUA_CQUEUES_SITE = $(call github,wahern,cqueues,$(LUA_CQUEUES_VERSION))
|
|
LUA_CQUEUES_LICENSE = MIT
|
|
LUA_CQUEUES_LICENSE_FILES = LICENSE
|
|
LUA_CQUEUES_DEPENDENCIES = luainterpreter openssl host-m4
|
|
|
|
define LUA_CQUEUES_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
prefix="$(STAGING_DIR)/usr" all$(LUAINTERPRETER_ABIVER)
|
|
endef
|
|
|
|
define LUA_CQUEUES_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
DESTDIR="$(TARGET_DIR)" prefix=/usr install$(LUAINTERPRETER_ABIVER)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|