1From 83333bc873c2655ff1de161f6b7db930f22f1cea Mon Sep 17 00:00:00 2001 2From: Joe Slater <jslater@windriver.com> 3Date: Thu, 7 Jun 2012 16:37:01 -0700 4Subject: [PATCH] instal libgettextlib.a before removing it 5 6In a multiple job build, Makefile can simultaneously 7be installing and removing libgettextlib.a. We serialize 8the operations. 9 10Upstream-Status: Pending 11 12Signed-off-by: Joe Slater <jslater@windriver.com> 13--- 14 gettext-tools/gnulib-lib/Makefile.am | 4 ++++ 15 1 file changed, 4 insertions(+) 16 17diff --git a/gettext-tools/gnulib-lib/Makefile.am b/gettext-tools/gnulib-lib/Makefile.am 18index ab729cd..a0d713e 100644 19--- a/gettext-tools/gnulib-lib/Makefile.am 20+++ b/gettext-tools/gnulib-lib/Makefile.am 21@@ -58,6 +58,10 @@ AM_CFLAGS = @WARN_CFLAGS@ 22 # Rules generated and collected by gnulib-tool. 23 include Makefile.gnulib 24 25+# defined in Makefile.gnulib but missing this dependency 26+# 27+install-exec-clean: install-libLTLIBRARIES 28+ 29 # OS/2 does not support a DLL name longer than 8 characters. 30 if OS2 31 libgettextlib_la_LDFLAGS += -os2dllname gtlib 32