diff options
author | Kai Kang <kai.kang@windriver.com> | 2016-08-04 17:38:02 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce@zedd.org> | 2016-08-04 21:45:53 -0400 |
commit | af2948e0483c56abf191d65e0e2d412974c21357 (patch) | |
tree | ba1ed0db029d0ed3810488eeaca777cdef274d73 /recipes-extended/libvirt/libvirt-1.3.5 | |
parent | 357ca45fb122f71379636f1fa91e95fa2666c93d (diff) | |
download | meta-virtualization-af2948e0483c56abf191d65e0e2d412974c21357.tar.gz |
libvirt: upgrade 1.3.2 -> 1.3.5
Upgrade libvirt from 1.3.2 to 1.3.5.
* update checksums and remove PR
* remove trailing whitespace
* remove backport patch 0001-fix-crash-in-getAllDomainStats.patch
* update context of patches
* remove libvirtd.socket from SYSTEMD_SERVICE which doesn't exist anymore
* install test data which ptest requires
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Bruce Ashfield <bruce@zedd.org>
Diffstat (limited to 'recipes-extended/libvirt/libvirt-1.3.5')
-rw-r--r-- | recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch b/recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch new file mode 100644 index 00000000..089ee330 --- /dev/null +++ b/recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch | |||
@@ -0,0 +1,46 @@ | |||
1 | From 8353dc1e642011199c3b3ba057d51d8768e4cd54 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
3 | Date: Fri, 31 Jul 2015 03:17:07 +0900 | ||
4 | Subject: [PATCH] to fix build error | ||
5 | |||
6 | The error likes as following | ||
7 | |||
8 | | Generating internals/command.html.tmp | ||
9 | | /bin/sh: line 3: internals/command.html.tmp: No such file or directory | ||
10 | | rm: Generating internals/locking.html.tmp | ||
11 | | cannot remove `internals/command.html.tmp': No such file or directory | ||
12 | | make[3]: *** [internals/command.html.tmp] Error 1 | ||
13 | | make[3]: *** Waiting for unfinished jobs.... | ||
14 | |||
15 | Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
16 | [ywei: rebased to libvirt-1.3.2] | ||
17 | Signed-off-by: Yunguo Wei <yunguo.wei@windriver.com> | ||
18 | --- | ||
19 | docs/Makefile.am | 4 ++-- | ||
20 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
21 | |||
22 | diff --git a/docs/Makefile.am b/docs/Makefile.am | ||
23 | index 1b4353b..c199551 100644 | ||
24 | --- a/docs/Makefile.am | ||
25 | +++ b/docs/Makefile.am | ||
26 | @@ -164,7 +164,7 @@ EXTRA_DIST= \ | ||
27 | todo.pl hvsupport.pl todo.cfg-example \ | ||
28 | $(schema_DATA) | ||
29 | |||
30 | -acl_generated = aclperms.htmlinc | ||
31 | +acl.html:: $(srcdir)/aclperms.htmlinc | ||
32 | |||
33 | $(srcdir)/aclperms.htmlinc: $(top_srcdir)/src/access/viraccessperm.h \ | ||
34 | $(srcdir)/genaclperms.pl Makefile.am | ||
35 | @@ -221,7 +221,7 @@ $(srcdir)/hvsupport.html.in: $(srcdir)/hvsupport.pl $(api_DATA) \ | ||
36 | convert -rotate 90 $< $@ | ||
37 | |||
38 | %.html.tmp: %.html.in site.xsl subsite.xsl page.xsl \ | ||
39 | - sitemap.html.in $(acl_generated) | ||
40 | + sitemap.html.in | ||
41 | @if [ -x $(XSLTPROC) ] ; then \ | ||
42 | echo "Generating $@"; \ | ||
43 | name=`echo $@ | sed -e 's/.tmp//'`; \ | ||
44 | -- | ||
45 | 1.9.1 | ||
46 | |||