On Mon, Apr 27, 2020 at 04:27:38PM +0100, Daniel P. Berrangé wrote:
On Sat, Apr 25, 2020 at 10:59:44PM +0200, Andrea Bolognani wrote:
> diff --git a/docs/meson.build b/docs/meson.build
> index e62e71a..fbeaf12 100644
> --- a/docs/meson.build
> +++ b/docs/meson.build
> @@ -1,8 +1,8 @@
> -prog_pod2man = find_program('pod2man')
> +prog_rst2man = find_program('rst2man')
This broke on RHEL-7 CI since it needs a -3 suffix, and IIRC will break
other distros which need a .py suffix
In libvirt configure.ac we pick from
rst2man rst2man.py rst2man-3
Technically the rst2man is correct for libvirt-dbus as that's the same
thing we have in libvirt-dbus.spec file, but we install python3 version
into our CI images.
I guess it would be ideal to follow what libvirt is doing so I'll post
a patch that requires python3-docutils or python36-docutils and add all
of the mentioned names into the meson.build file.
Pavel