]> xenbits.xensource.com Git - people/royger/osstest.git/commitdiff
libvirt: Install GnuTLS for libvirt builds
authorJim Fehlig <jfehlig@suse.com>
Wed, 5 Sep 2018 21:43:12 +0000 (15:43 -0600)
committerIan Jackson <ian.jackson@eu.citrix.com>
Mon, 17 Sep 2018 08:19:43 +0000 (09:19 +0100)
Since libvirt commit 60d9ad6f GnuTLS is required to build libvirt. The
various libvirt build tests in osstest began failing after the commit
hit libvirt.git master. Adding libgnutls28-dev to the list of packages
needed to build libvirt will fix the currently broken builds.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Osstest/Toolstack/libvirt.pm

index 45df1734aa208ebf3d8539bc2a53e4f15b9767d5..d5cda77eea2efe19b7ef5e7e240afddc69118aed 100644 (file)
@@ -26,7 +26,7 @@ use XML::LibXML;
 
 sub new {
     my ($class, $ho, $methname,$asset) = @_;
-    my @extra_packages = qw(libavahi-client3);
+    my @extra_packages = qw(libavahi-client3 libgnutls28-dev);
     my $nl_lib = "libnl-3-200";
     $nl_lib = "libnl1" if ($ho->{Suite} =~ m/wheezy/);
     push(@extra_packages, $nl_lib);