* [Buildroot] [PATCH] package/lua-cqueues: needs host-m4
@ 2018-12-11 16:13 Thomas Petazzoni
2018-12-11 22:09 ` Arnout Vandecappelle
2018-12-16 21:14 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-12-11 16:13 UTC (permalink / raw)
To: buildroot
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>
---
package/lua-cqueues/lua-cqueues.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/lua-cqueues/lua-cqueues.mk b/package/lua-cqueues/lua-cqueues.mk
index 4f4be1e049..4f31c3277f 100644
--- a/package/lua-cqueues/lua-cqueues.mk
+++ b/package/lua-cqueues/lua-cqueues.mk
@@ -8,7 +8,7 @@ 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
+LUA_CQUEUES_DEPENDENCIES = luainterpreter openssl host-m4
define LUA_CQUEUES_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
--
2.19.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/lua-cqueues: needs host-m4
2018-12-11 16:13 [Buildroot] [PATCH] package/lua-cqueues: needs host-m4 Thomas Petazzoni
@ 2018-12-11 22:09 ` Arnout Vandecappelle
2018-12-16 21:14 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2018-12-11 22:09 UTC (permalink / raw)
To: buildroot
On 11/12/2018 17:13, Thomas Petazzoni wrote:
> 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>
Applied to master, thanks.
Regards,
Arnout
> ---
> package/lua-cqueues/lua-cqueues.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/lua-cqueues/lua-cqueues.mk b/package/lua-cqueues/lua-cqueues.mk
> index 4f4be1e049..4f31c3277f 100644
> --- a/package/lua-cqueues/lua-cqueues.mk
> +++ b/package/lua-cqueues/lua-cqueues.mk
> @@ -8,7 +8,7 @@ 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
> +LUA_CQUEUES_DEPENDENCIES = luainterpreter openssl host-m4
>
> define LUA_CQUEUES_BUILD_CMDS
> $(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/lua-cqueues: needs host-m4
2018-12-11 16:13 [Buildroot] [PATCH] package/lua-cqueues: needs host-m4 Thomas Petazzoni
2018-12-11 22:09 ` Arnout Vandecappelle
@ 2018-12-16 21:14 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-12-16 21:14 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:
> 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>
Committed to 2018.11.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-12-16 21:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-11 16:13 [Buildroot] [PATCH] package/lua-cqueues: needs host-m4 Thomas Petazzoni
2018-12-11 22:09 ` Arnout Vandecappelle
2018-12-16 21:14 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox