summaryrefslogtreecommitdiffstats
path: root/recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch')
-rw-r--r--recipes-extended/libvirt/libvirt-1.3.5/0001-to-fix-build-error.patch46
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 @@
1From 8353dc1e642011199c3b3ba057d51d8768e4cd54 Mon Sep 17 00:00:00 2001
2From: Lei Maohui <leimaohui@cn.fujitsu.com>
3Date: Fri, 31 Jul 2015 03:17:07 +0900
4Subject: [PATCH] to fix build error
5
6The 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
15Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
16[ywei: rebased to libvirt-1.3.2]
17Signed-off-by: Yunguo Wei <yunguo.wei@windriver.com>
18---
19 docs/Makefile.am | 4 ++--
20 1 file changed, 2 insertions(+), 2 deletions(-)
21
22diff --git a/docs/Makefile.am b/docs/Makefile.am
23index 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--
451.9.1
46