diff options
Diffstat (limited to 'recipes-extended/libvirt/libvirt-1.2.19/0001-to-fix-build-error.patch')
-rw-r--r-- | recipes-extended/libvirt/libvirt-1.2.19/0001-to-fix-build-error.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes-extended/libvirt/libvirt-1.2.19/0001-to-fix-build-error.patch b/recipes-extended/libvirt/libvirt-1.2.19/0001-to-fix-build-error.patch new file mode 100644 index 00000000..61a54e18 --- /dev/null +++ b/recipes-extended/libvirt/libvirt-1.2.19/0001-to-fix-build-error.patch | |||
@@ -0,0 +1,44 @@ | |||
1 | From 62514c8c2925e48a4f20ce3d7d48387851cb76a5 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 | --- | ||
17 | docs/Makefile.am | 4 ++-- | ||
18 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
19 | |||
20 | diff --git a/docs/Makefile.am b/docs/Makefile.am | ||
21 | index daf37b6..125c5fd 100644 | ||
22 | --- a/docs/Makefile.am | ||
23 | +++ b/docs/Makefile.am | ||
24 | @@ -162,7 +162,7 @@ EXTRA_DIST= \ | ||
25 | sitemap.html.in aclperms.htmlinc \ | ||
26 | todo.pl hvsupport.pl todo.cfg-example | ||
27 | |||
28 | -acl_generated = aclperms.htmlinc | ||
29 | +acl.html:: $(srcdir)/aclperms.htmlinc | ||
30 | |||
31 | $(srcdir)/aclperms.htmlinc: $(top_srcdir)/src/access/viraccessperm.h \ | ||
32 | $(srcdir)/genaclperms.pl Makefile.am | ||
33 | @@ -227,7 +227,7 @@ internals/%.html.tmp: internals/%.html.in subsite.xsl page.xsl sitemap.html.in | ||
34 | $(top_srcdir)/docs/subsite.xsl $< > $@ \ | ||
35 | || { rm $@ && exit 1; }; fi | ||
36 | |||
37 | -%.html.tmp: %.html.in site.xsl page.xsl sitemap.html.in $(acl_generated) | ||
38 | +%.html.tmp: %.html.in site.xsl page.xsl sitemap.html.in | ||
39 | @if [ -x $(XSLTPROC) ] ; then \ | ||
40 | echo "Generating $@"; \ | ||
41 | name=`echo $@ | sed -e 's/.tmp//'`; \ | ||
42 | -- | ||
43 | 1.8.4.2 | ||
44 | |||