summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libunistring/libunistring/parallelmake.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libunistring/libunistring/parallelmake.patch')
-rw-r--r--meta/recipes-support/libunistring/libunistring/parallelmake.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-support/libunistring/libunistring/parallelmake.patch b/meta/recipes-support/libunistring/libunistring/parallelmake.patch
new file mode 100644
index 0000000000..21025b8e9d
--- /dev/null
+++ b/meta/recipes-support/libunistring/libunistring/parallelmake.patch
@@ -0,0 +1,26 @@
1Fix a parallel make race where cdefs.h uses the unused-parameter.h header file
2but has no dependency listed. This can result in an empty cdefs.h file which
3results in a build failure like:
4
5| In file included from striconveh.c:30:0:
6| unistr.h:193:48: error: expected ';', ',' or ')' before '_GL_UNUSED_PARAMETER'
7| In file included from striconveh.c:30:0:
8| unistr.h:263:54: error: expected ';', ',' or ')' before '_GL_UNUSED_PARAMETER'
9
10Upstream-Status: Pending
11
12RP 2012/4/12
13
14Index: libunistring-0.9.3/lib/Makefile.am
15===================================================================
16--- libunistring-0.9.3.orig/lib/Makefile.am 2012-04-12 07:45:41.450059820 +0000
17+++ libunistring-0.9.3/lib/Makefile.am 2012-04-12 07:48:45.434055559 +0000
18@@ -157,7 +157,7 @@
19
20 # unistring/cdefs.h is not public, but is included by other header files.
21 nobase_nodist_include_HEADERS += unistring/cdefs.h
22-unistring/cdefs.h : unistring/cdefs.in.h
23+unistring/cdefs.h : unistring/cdefs.in.h $(UNUSED_PARAMETER_H)
24 @MKDIR_P@ unistring
25 rm -f $@-t $@
26 sed -e '/definition of _GL_UNUSED_PARAMETER/r $(UNUSED_PARAMETER_H)' \