
On 01.12.2014 15:37, Martin Kletzander wrote:
Since libvirt.h was split into multiple files and similarly docs/libvirt-libvirt.html, docs/hvsupport.html have bad hyperlinks. The same happens for all the html.in files that used <code class='docref'> tag, because page.xsl has no idea where to point the link that's found.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com> --- docs/Makefile.am | 4 +- docs/acl.html.in | 2 +- docs/api.html.in | 224 ++++++++++++++++++++++++++++++++++-------- docs/errors.html.in | 4 +- docs/formatdomain.html.in | 15 ++- docs/formatdomaincaps.html.in | 17 ++-- docs/hvsupport.pl | 79 ++++++++++----- docs/java.html.in | 6 +- docs/page.xsl | 5 - docs/python.html.in | 8 +- docs/uri.html.in | 12 ++- 11 files changed, 278 insertions(+), 98 deletions(-)
diff --git a/docs/hvsupport.pl b/docs/hvsupport.pl index 6bbd44a..44a30ce 100755 --- a/docs/hvsupport.pl +++ b/docs/hvsupport.pl @@ -4,6 +4,8 @@ use strict; use warnings;
use File::Find; +use XML::XPath; +use XML::XPath::XMLParser;
So up till now we've used only File::Find which is in core perl. However, XML::XPath isn't. Therefore build on bare minimal rawhide fails: make[3]: Entering directory '/home/zippy/tmp/libvirt.git/docs' GEN hvsupport.html.in Can't locate XML/XPath.pm in @INC (you may need to install the XML::XPath module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at ./hvsupport.pl line 7. BEGIN failed--compilation aborted at ./hvsupport.pl line 7. Makefile:2327: recipe for target 'hvsupport.html.in' failed make[3]: *** [hvsupport.html.in] Error 1 make[3]: Leaving directory '/home/zippy/tmp/libvirt.git/docs' We must require XML::XPath in the specfile now. ACK with this squashed in: diff --git a/libvirt.spec.in b/libvirt.spec.in index 0959483..3edb7bd 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -427,6 +427,7 @@ BuildRequires: /usr/bin/pod2man %endif BuildRequires: git BuildRequires: perl +BuildRequires: perl-XML-XPath BuildRequires: python %if %{with_systemd} BuildRequires: systemd-units Of course this isn't the only thing I've found missing, but for that I'll post a separate patch. Michal