summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch')
-rw-r--r--meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch b/meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch
new file mode 100644
index 0000000000..4ca44cce88
--- /dev/null
+++ b/meta/recipes-core/gettext/gettext-0.18.1.1/parallel.patch
@@ -0,0 +1,34 @@
1instal libgettextlib.a before removing it
2
3In a multiple job build, Makefile can simultaneously
4be installing and removing libgettextlib.a. We serialize
5the operations.
6
7Signed-off-by: Joe Slater <jslater@windriver.com>
8
9--- a/gettext-tools/gnulib-lib/Makefile.am
10+++ b/gettext-tools/gnulib-lib/Makefile.am
11@@ -57,6 +57,10 @@ endif
12 # Rules generated and collected by gnulib-tool.
13 include Makefile.gnulib
14
15+# defined in Makefile.gnulib but missing this dependency
16+#
17+install-exec-clean: install-libLTLIBRARIES
18+
19 # Which classes to export from the shared library.
20 MOOPPFLAGS += --dllexport=styled_ostream
21
22--- a/gettext-tools/src/Makefile.am
23+++ b/gettext-tools/src/Makefile.am
24@@ -229,8 +229,8 @@ libgettextsrc_la_LDFLAGS += -Wl,--export
25 endif
26
27 # No need to install libgettextsrc.a, except on AIX.
28-install-exec-local: install-libLTLIBRARIES install-exec-clean
29-install-exec-clean:
30+install-exec-local: install-exec-clean
31+install-exec-clean: install-libLTLIBRARIES
32 case "@host_os@" in \
33 aix*) ;; \
34 *) $(RM) $(DESTDIR)$(libdir)/libgettextsrc.a ;; \