All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2,1/1] package/libvirt: needs xsltproc
@ 2021-08-07 20:32 Fabrice Fontaine
  2021-08-08  7:47 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-08-07 20:32 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Jared Bents

libvirt needs xsltproc since its addition in commit
ccfc90e1010e42e6529afae3a5ea8bf7226dabc1:

../output-1/build/libvirt-7.4.0/meson.build:807:2: ERROR: Program 'xsltproc' not found

Fixes:
 - http://autobuild.buildroot.org/results/0341be10c4c36f37b5b6486428e55170a42b7692

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2:
 - Add autobuilder link and split dependencies lines

 package/libvirt/libvirt.mk | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/package/libvirt/libvirt.mk b/package/libvirt/libvirt.mk
index feb2d6aa84..2e9b7db0a5 100644
--- a/package/libvirt/libvirt.mk
+++ b/package/libvirt/libvirt.mk
@@ -10,8 +10,18 @@ LIBVIRT_SOURCE = libvirt-$(LIBVIRT_VERSION).tar.xz
 LIBVIRT_LICENSE = LGPL-2.1+
 LIBVIRT_LICENSE_FILES = COPYING
 LIBVIRT_CPE_ID_VENDOR = redhat
-LIBVIRT_DEPENDENCIES = host-nfs-utils host-pkgconf host-python-docutils \
-	gnutls libglib2 libpciaccess libtirpc libxml2 udev zlib
+LIBVIRT_DEPENDENCIES = \
+	host-libxslt \
+	host-nfs-utils \
+	host-pkgconf \
+	host-python-docutils \
+	gnutls \
+	libglib2 \
+	libpciaccess \
+	libtirpc \
+	libxml2 \
+	udev \
+	zlib
 
 LIBVIRT_CONF_ENV += \
 	CFLAGS="$(TARGET_CFLAGS) `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`" \
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2,1/1] package/libvirt: needs xsltproc
  2021-08-07 20:32 [Buildroot] [PATCH v2,1/1] package/libvirt: needs xsltproc Fabrice Fontaine
@ 2021-08-08  7:47 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2021-08-08  7:47 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Jared Bents, buildroot

Fabrice, All,

On 2021-08-07 22:32 +0200, Fabrice Fontaine spake thusly:
> libvirt needs xsltproc since its addition in commit
> ccfc90e1010e42e6529afae3a5ea8bf7226dabc1:
> 
> ../output-1/build/libvirt-7.4.0/meson.build:807:2: ERROR: Program 'xsltproc' not found
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/0341be10c4c36f37b5b6486428e55170a42b7692
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
> Changes v1 -> v2:
>  - Add autobuilder link and split dependencies lines
> 
>  package/libvirt/libvirt.mk | 14 ++++++++++++--
>  1 file changed, 12 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libvirt/libvirt.mk b/package/libvirt/libvirt.mk
> index feb2d6aa84..2e9b7db0a5 100644
> --- a/package/libvirt/libvirt.mk
> +++ b/package/libvirt/libvirt.mk
> @@ -10,8 +10,18 @@ LIBVIRT_SOURCE = libvirt-$(LIBVIRT_VERSION).tar.xz
>  LIBVIRT_LICENSE = LGPL-2.1+
>  LIBVIRT_LICENSE_FILES = COPYING
>  LIBVIRT_CPE_ID_VENDOR = redhat
> -LIBVIRT_DEPENDENCIES = host-nfs-utils host-pkgconf host-python-docutils \
> -	gnutls libglib2 libpciaccess libtirpc libxml2 udev zlib
> +LIBVIRT_DEPENDENCIES = \
> +	host-libxslt \
> +	host-nfs-utils \
> +	host-pkgconf \
> +	host-python-docutils \
> +	gnutls \
> +	libglib2 \
> +	libpciaccess \
> +	libtirpc \
> +	libxml2 \
> +	udev \
> +	zlib
>  
>  LIBVIRT_CONF_ENV += \
>  	CFLAGS="$(TARGET_CFLAGS) `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`" \
> -- 
> 2.30.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-08-08  7:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-07 20:32 [Buildroot] [PATCH v2,1/1] package/libvirt: needs xsltproc Fabrice Fontaine
2021-08-08  7:47 ` Yann E. MORIN

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.