All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
@ 2020-06-05 11:37 Wei Liu
  2020-06-05 11:43 ` Jürgen Groß
  0 siblings, 1 reply; 4+ messages in thread
From: Wei Liu @ 2020-06-05 11:37 UTC (permalink / raw)
  To: Xen Development List; +Cc: jgross, Olaf Hering, Ian Jackson, Wei Liu, paul

Its name is "zlib" not "z".

Reported-by: Olaf Hering <olaf@aepfle.de>
Fixes: 86234eafb952 ("libs: add libxenhypfs")
Signed-off-by: Wei Liu <wl@xen.org>
---
Cc: paul@xen.org
Cc: jgross@suse.com
---
 tools/libs/hypfs/xenhypfs.pc.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/libs/hypfs/xenhypfs.pc.in b/tools/libs/hypfs/xenhypfs.pc.in
index 92a262c7a252..ef9fcc87bf37 100644
--- a/tools/libs/hypfs/xenhypfs.pc.in
+++ b/tools/libs/hypfs/xenhypfs.pc.in
@@ -7,4 +7,4 @@ Description: The Xenhypfs library for Xen hypervisor
 Version: @@version@@
 Cflags: -I${includedir} @@cflagslocal@@
 Libs: @@libsflag@@${libdir} -lxenhypfs
-Requires.private: xentoolcore,xentoollog,xencall,z
+Requires.private: xentoolcore,xentoollog,xencall,zlib
-- 
2.20.1



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

* Re: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
  2020-06-05 11:37 [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file Wei Liu
@ 2020-06-05 11:43 ` Jürgen Groß
  2020-06-05 11:58   ` Paul Durrant
  0 siblings, 1 reply; 4+ messages in thread
From: Jürgen Groß @ 2020-06-05 11:43 UTC (permalink / raw)
  To: Wei Liu, Xen Development List; +Cc: Olaf Hering, Ian Jackson, paul

On 05.06.20 13:37, Wei Liu wrote:
> Its name is "zlib" not "z".
> 
> Reported-by: Olaf Hering <olaf@aepfle.de>
> Fixes: 86234eafb952 ("libs: add libxenhypfs")
> Signed-off-by: Wei Liu <wl@xen.org>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen


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

* RE: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
  2020-06-05 11:43 ` Jürgen Groß
@ 2020-06-05 11:58   ` Paul Durrant
  2020-06-05 14:53     ` Ian Jackson
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Durrant @ 2020-06-05 11:58 UTC (permalink / raw)
  To: 'Jürgen Groß', 'Wei Liu',
	'Xen Development List'
  Cc: 'Olaf Hering', 'Ian Jackson'

> -----Original Message-----
> From: Jürgen Groß <jgross@suse.com>
> Sent: 05 June 2020 12:43
> To: Wei Liu <wl@xen.org>; Xen Development List <xen-devel@lists.xenproject.org>
> Cc: Olaf Hering <olaf@aepfle.de>; paul@xen.org; Ian Jackson <ian.jackson@eu.citrix.com>
> Subject: Re: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
> 
> On 05.06.20 13:37, Wei Liu wrote:
> > Its name is "zlib" not "z".
> >
> > Reported-by: Olaf Hering <olaf@aepfle.de>
> > Fixes: 86234eafb952 ("libs: add libxenhypfs")
> > Signed-off-by: Wei Liu <wl@xen.org>
> 
> Reviewed-by: Juergen Gross <jgross@suse.com>
>

Release-acked-by: Paul Durrant <paul@xen.org>



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

* RE: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
  2020-06-05 11:58   ` Paul Durrant
@ 2020-06-05 14:53     ` Ian Jackson
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Jackson @ 2020-06-05 14:53 UTC (permalink / raw)
  To: paul
  Cc: 'Jürgen Groß', 'Xen Development List',
	'Olaf Hering', 'Wei Liu'

Paul Durrant writes ("RE: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file"):
> > -----Original Message-----
> > From: Jürgen Groß <jgross@suse.com>
> > Sent: 05 June 2020 12:43
> > To: Wei Liu <wl@xen.org>; Xen Development List <xen-devel@lists.xenproject.org>
> > Cc: Olaf Hering <olaf@aepfle.de>; paul@xen.org; Ian Jackson <ian.jackson@eu.citrix.com>
> > Subject: Re: [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file
> > 
> > On 05.06.20 13:37, Wei Liu wrote:
> > > Its name is "zlib" not "z".
> > >
> > > Reported-by: Olaf Hering <olaf@aepfle.de>
> > > Fixes: 86234eafb952 ("libs: add libxenhypfs")
> > > Signed-off-by: Wei Liu <wl@xen.org>
> > 
> > Reviewed-by: Juergen Gross <jgross@suse.com>
> >
> 
> Release-acked-by: Paul Durrant <paul@xen.org>

Thanks all.  Committed.

Ian.


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

end of thread, other threads:[~2020-06-05 14:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-05 11:37 [PATCH for-4.14] libs/hypfs: use correct zlib name in pc file Wei Liu
2020-06-05 11:43 ` Jürgen Groß
2020-06-05 11:58   ` Paul Durrant
2020-06-05 14:53     ` Ian Jackson

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.