1From 2d544cac238eccbfc32cafc9502ddf6e00994211 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com>
3Date: Fri, 9 Oct 2015 17:50:41 +0100
4Subject: [PATCH] icu: fix install race
5
6The generic recursive target calls target-local so also adding it to the
7dependency list results in races due to install-local being executed twice in
8parallel.  For example, install-manx can fail if the two install processes race
9and one process tries to chown a file that the other process has just deleted.
10
11Also install-manx should be a phony target, and for clarity use $^ instead of $?
12in the install command.
13
14Upstream-Status: Pending
15Signed-off-by: Ross Burton <ross.burton@intel.com>
16---
17 Makefile.in | 8 ++++----
18 1 file changed, 4 insertions(+), 4 deletions(-)
19
20diff --git a/Makefile.in b/Makefile.in
21index 8366f01..79b91c9 100644
22--- a/Makefile.in
23+++ b/Makefile.in
24@@ -77,7 +77,7 @@ EXTRA_DATA =
25
26 ## List of phony targets
27 .PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls		\
28-install-recursive clean clean-local clean-recursive distclean		\
29+install-recursive install-manx clean clean-local clean-recursive distclean		\
30 distclean-local distclean-recursive doc dist dist-local dist-recursive	\
31 check check-local check-recursive clean-recursive-with-twist install-icu \
32 doc install-doc tests icu4j-data icu4j-data-install update-windows-makefiles xcheck-local xcheck-recursive xperf xcheck xperf-recursive \
33@@ -88,9 +88,9 @@ check-exhaustive check-exhaustive-local check-exhaustive-recursive releaseDist
34
35 ## List of standard targets
36 all: all-local all-recursive
37-install: install-recursive install-local
38+install: install-recursive
39 clean: clean-recursive-with-twist clean-local
40-distclean : distclean-recursive distclean-local
41+distclean : distclean-recursive
42 dist: dist-recursive
43 check: all check-recursive
44 check-recursive: all
45@@ -357,7 +357,7 @@ config.status: $(srcdir)/configure $(srcdir)/common/unicode/uvernum.h
46 install-manx: $(MANX_FILES)
47 	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
48 ifneq ($(MANX_FILES),)
49-	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
50+	$(INSTALL_DATA) $^ $(DESTDIR)$(mandir)/man$(SECTION)
51 endif
52
53 config/%.$(SECTION): $(srcdir)/config/%.$(SECTION).in
54