All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/nbd: needs host-bison
@ 2022-03-29 18:44 Fabrice Fontaine
  2022-04-03 15:03 ` Arnout Vandecappelle
  2022-04-10 21:03 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-03-29 18:44 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN, Fabrice Fontaine

host-bison is mandatory to avoid the following build failure since bump
to version 3.24 in commit bf2e459bb9fc9fe57147313cda35f7022172e6e8 and
https://github.com/NetworkBlockDevice/nbd/commit/cd099ee7d0602104506bdd5063c0a3db2ec9b550:

configure: error: bison is required

Fixes:
 - http://autobuild.buildroot.org/results/05872813c9e9b9f39f960fa9a33ad82dc124c808

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/nbd/nbd.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/nbd/nbd.mk b/package/nbd/nbd.mk
index f0fb23910e..50f698dd24 100644
--- a/package/nbd/nbd.mk
+++ b/package/nbd/nbd.mk
@@ -8,7 +8,7 @@ NBD_VERSION = 3.24
 NBD_SOURCE = nbd-$(NBD_VERSION).tar.xz
 NBD_SITE = http://downloads.sourceforge.net/project/nbd/nbd/$(NBD_VERSION)
 NBD_CONF_OPTS = --enable-lfs
-NBD_DEPENDENCIES = host-pkgconf libglib2
+NBD_DEPENDENCIES = host-bison host-pkgconf libglib2
 NBD_LICENSE = GPL-2.0
 NBD_LICENSE_FILES = COPYING
 NBD_CPE_ID_VENDOR = network_block_device_project
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/nbd: needs host-bison
  2022-03-29 18:44 [Buildroot] [PATCH 1/1] package/nbd: needs host-bison Fabrice Fontaine
@ 2022-04-03 15:03 ` Arnout Vandecappelle
  2022-04-10 21:03 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-04-03 15:03 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Yann E . MORIN



On 29/03/2022 20:44, Fabrice Fontaine wrote:
> host-bison is mandatory to avoid the following build failure since bump
> to version 3.24 in commit bf2e459bb9fc9fe57147313cda35f7022172e6e8 and
> https://github.com/NetworkBlockDevice/nbd/commit/cd099ee7d0602104506bdd5063c0a3db2ec9b550:
> 
> configure: error: bison is required
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/05872813c9e9b9f39f960fa9a33ad82dc124c808
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/nbd/nbd.mk | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/nbd/nbd.mk b/package/nbd/nbd.mk
> index f0fb23910e..50f698dd24 100644
> --- a/package/nbd/nbd.mk
> +++ b/package/nbd/nbd.mk
> @@ -8,7 +8,7 @@ NBD_VERSION = 3.24
>   NBD_SOURCE = nbd-$(NBD_VERSION).tar.xz
>   NBD_SITE = http://downloads.sourceforge.net/project/nbd/nbd/$(NBD_VERSION)
>   NBD_CONF_OPTS = --enable-lfs
> -NBD_DEPENDENCIES = host-pkgconf libglib2
> +NBD_DEPENDENCIES = host-bison host-pkgconf libglib2
>   NBD_LICENSE = GPL-2.0
>   NBD_LICENSE_FILES = COPYING
>   NBD_CPE_ID_VENDOR = network_block_device_project
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/nbd: needs host-bison
  2022-03-29 18:44 [Buildroot] [PATCH 1/1] package/nbd: needs host-bison Fabrice Fontaine
  2022-04-03 15:03 ` Arnout Vandecappelle
@ 2022-04-10 21:03 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-04-10 21:03 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Yann E . MORIN, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > host-bison is mandatory to avoid the following build failure since bump
 > to version 3.24 in commit bf2e459bb9fc9fe57147313cda35f7022172e6e8 and
 > https://github.com/NetworkBlockDevice/nbd/commit/cd099ee7d0602104506bdd5063c0a3db2ec9b550:

 > configure: error: bison is required

 > Fixes:
 >  - http://autobuild.buildroot.org/results/05872813c9e9b9f39f960fa9a33ad82dc124c808

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-10 21:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29 18:44 [Buildroot] [PATCH 1/1] package/nbd: needs host-bison Fabrice Fontaine
2022-04-03 15:03 ` Arnout Vandecappelle
2022-04-10 21:03 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.