diff options
Diffstat (limited to 'recipes-extended/libvirt/libvirt/0001-to-fix-build-error.patch')
-rw-r--r-- | recipes-extended/libvirt/libvirt/0001-to-fix-build-error.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/recipes-extended/libvirt/libvirt/0001-to-fix-build-error.patch b/recipes-extended/libvirt/libvirt/0001-to-fix-build-error.patch new file mode 100644 index 00000000..c920139e --- /dev/null +++ b/recipes-extended/libvirt/libvirt/0001-to-fix-build-error.patch | |||
@@ -0,0 +1,49 @@ | |||
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 | [MA: rebase to v4.3.0] | ||
19 | Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | ||
20 | --- | ||
21 | docs/Makefile.am | 5 ++--- | ||
22 | 1 file changed, 2 insertions(+), 3 deletions(-) | ||
23 | |||
24 | diff --git a/docs/Makefile.am b/docs/Makefile.am | ||
25 | index 9620587..060a82b 100644 | ||
26 | --- a/docs/Makefile.am | ||
27 | +++ b/docs/Makefile.am | ||
28 | @@ -183,7 +183,7 @@ EXTRA_DIST= \ | ||
29 | hvsupport.pl \ | ||
30 | $(schema_DATA) | ||
31 | |||
32 | -acl_generated = aclperms.htmlinc | ||
33 | +acl.html:: $(srcdir)/aclperms.htmlinc | ||
34 | |||
35 | $(srcdir)/aclperms.htmlinc: $(top_srcdir)/src/access/viraccessperm.h \ | ||
36 | $(srcdir)/genaclperms.pl Makefile.am | ||
37 | @@ -247,8 +247,7 @@ MAINTAINERCLEANFILES += \ | ||
38 | %.png: %.fig | ||
39 | convert -rotate 90 $< $@ | ||
40 | |||
41 | -%.html.tmp: %.html.in site.xsl subsite.xsl page.xsl \ | ||
42 | - $(acl_generated) | ||
43 | +%.html.tmp: %.html.in site.xsl subsite.xsl page.xsl | ||
44 | $(AM_V_GEN)name=`echo $@ | sed -e 's/.tmp//'`; \ | ||
45 | dir=`dirname $@` ; \ | ||
46 | if test "$$dir" = "."; \ | ||
47 | -- | ||
48 | 1.9.1 | ||
49 | |||